Spec coverage on Settings/ controllers specs (#24221)
This commit is contained in:
parent
a2a66300d9
commit
36eeb70d53
7 changed files with 205 additions and 20 deletions
|
@ -14,7 +14,16 @@ describe Settings::Preferences::AppearanceController do
|
|||
describe 'GET #show' do
|
||||
it 'returns http success' do
|
||||
get :show
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
end
|
||||
end
|
||||
|
||||
describe 'PUT #update' do
|
||||
it 'redirects correctly' do
|
||||
put :update, params: { user: { setting_theme: 'contrast' } }
|
||||
|
||||
expect(response).to redirect_to(settings_preferences_appearance_path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue