Use expect
for nested params in settings/*
controllers (#33673)
This commit is contained in:
parent
8b24085f8e
commit
e155aab39e
16 changed files with 131 additions and 8 deletions
16
spec/requests/settings/privacy_spec.rb
Normal file
16
spec/requests/settings/privacy_spec.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Settings Privacy' do
|
||||
describe 'PUT /settings/privacy' do
|
||||
before { sign_in Fabricate(:user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
put settings_privacy_path(account: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to have_http_status(400)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue