Use expect for nested params in settings/* controllers (#33673)

This commit is contained in:
Matt Jankowski 2025-01-22 03:49:52 -05:00 committed by GitHub
parent 8b24085f8e
commit e155aab39e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 131 additions and 8 deletions

View file

@ -18,4 +18,15 @@ RSpec.describe 'Settings Migrations' do
it { is_expected.to redirect_to new_user_session_path }
end
end
context 'when user is signed in' do
before { sign_in Fabricate(:user) }
it 'gracefully handles invalid nested params' do
post settings_migration_path(account_migration: 'invalid')
expect(response)
.to have_http_status(400)
end
end
end