test: fix or skip signup controller tests

This commit is contained in:
Mike Dalessio
2025-11-10 14:57:25 -05:00
parent 905cf759d8
commit c38f27f3b4
5 changed files with 20 additions and 2 deletions
@@ -12,7 +12,7 @@ class Account::SettingsControllerTest < ActionDispatch::IntegrationTest
test "update" do
put account_settings_path, params: { account: { name: "New Account Name" } }
assert_equal "New Account Name", Current.account.name
assert_equal "New Account Name", Current.account.reload.name
assert_redirected_to account_settings_path
end