tests rubocopified

This commit is contained in:
Christoph Haas 2024-07-15 00:05:56 +02:00
parent 48e3a8c67f
commit 55ea782b86
4 changed files with 26 additions and 14 deletions

View file

@ -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