0
0
Fork 0

Settings controllers specs (#23915)

This commit is contained in:
Matt Jankowski 2023-03-04 10:56:43 -05:00 committed by GitHub
parent 39e7525c96
commit 6a57c42316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 144 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# 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
expect(response).to have_http_status(200)
end
end
end