tests rubocopified
This commit is contained in:
parent
48e3a8c67f
commit
55ea782b86
4 changed files with 26 additions and 14 deletions
|
|
@ -1,18 +1,18 @@
|
|||
require "test_helper"
|
||||
require 'test_helper'
|
||||
|
||||
class AdminControllerTest < ActionController::TestCase
|
||||
test "user must login" do
|
||||
test 'user must login' do
|
||||
get :status
|
||||
assert_redirected_to user_session_path
|
||||
end
|
||||
|
||||
test "normal user must not see admin status" do
|
||||
test 'normal user must not see admin status' do
|
||||
sign_in users(:normal)
|
||||
get :status
|
||||
assert_response :forbidden
|
||||
end
|
||||
|
||||
test "admin can see status" do
|
||||
test 'admin can see status' do
|
||||
sign_in users(:admin)
|
||||
get :status
|
||||
assert_response :success
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue