mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-15 16:59:41 +00:00
Use expect in remaining controller locations (#33748)
This commit is contained in:
16
spec/requests/settings/preferences/appearance_spec.rb
Normal file
16
spec/requests/settings/preferences/appearance_spec.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Settings Preferences Appearance' do
|
||||
describe 'PUT /settings/preferences/appearance' do
|
||||
before { sign_in Fabricate(:user) }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
put settings_preferences_appearance_path(user: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to have_http_status(400)
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user