mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-02 23:41:44 +01:00
17 lines
394 B
Ruby
17 lines
394 B
Ruby
# 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
|