This commit is contained in:
Andrew Nesbitt 2018-08-24 15:52:54 +01:00
Родитель 1539240c07
Коммит 9431a08611
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,19 @@
# frozen_string_literal: true
require 'test_helper'
class AdminControllerTest < ActionDispatch::IntegrationTest
setup do
stub_fetch_subject_enabled(value: false)
stub_notifications_request
@user = create(:user)
stub_env_var 'ADMIN_GITHUB_IDS'
end
test 'render 404 if user isnt admin' do
sign_in_as(@user)
assert_raises ActionController::RoutingError do
get '/admin'
end
end
end