0
0
Fork 0

Admin controllers specs (#23917)

This commit is contained in:
Matt Jankowski 2023-03-04 11:13:28 -05:00 committed by GitHub
parent ad585fb195
commit 42ddc45133
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 428 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# frozen_string_literal: true
require 'rails_helper'
describe Admin::WebhooksController do
render_views
let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
before do
sign_in user, scope: :user
end
describe 'GET #index' do
it 'returns http success' do
get :index
expect(response).to have_http_status(:success)
end
end
end