Files
fizzy/test/controllers/admin/stats_controller_test.rb
T
2025-11-28 15:53:58 +01:00

24 lines
393 B
Ruby

require "test_helper"
class Admin::StatsControllerTest < ActionDispatch::IntegrationTest
test "staff can access stats" do
sign_in_as :david
untenanted do
get admin_stats_url
end
assert_response :success
end
test "non-staff cannot access stats" do
sign_in_as :jz
untenanted do
get admin_stats_url
end
assert_response :forbidden
end
end