This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-03-04 16:56:43 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Settings::Preferences::AppearanceController do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let!(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :show
|
2023-04-11 11:35:39 +02:00
|
|
|
|
2023-03-04 16:56:43 +01:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
end
|
2023-04-11 11:35:39 +02:00
|
|
|
|
|
|
|
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
|
2023-03-04 16:56:43 +01:00
|
|
|
end
|