1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added button to calculate all team scores

This commit is contained in:
2020-01-14 13:16:34 -05:00
parent e1d25d9cee
commit 7ffdd3edf5
4 changed files with 39 additions and 7 deletions

View File

@@ -322,11 +322,8 @@ class TournamentsControllerTest < ActionController::TestCase
patch :remove_delegate, params: { id: 1, delegate: TournamentDelegate.find(1) }
redirect
end
test 'logged in tournament delegate can adjust team points' do
test 'logged in tournament delegate can adjust team points' do
sign_in_delegate
get :teampointadjust, params: { id: 1 }
success
@@ -373,4 +370,28 @@ class TournamentsControllerTest < ActionController::TestCase
get :matches, params: { id: 1 }
success
end
test "logged in tournament owner can calculate team scores" do
sign_in_owner
post :calculate_team_scores, params: { id: 1 }
success
end
test "logged in tournament delegate can calculate team scores" do
sign_in_delegate
post :calculate_team_scores, params: { id: 1 }
success
end
test "logged in non tournament owner cannot calculate team scores" do
sign_in_non_owner
post :calculate_team_scores, params: { id: 1 }
redirect
end
test "logged in school delegate cannot calculate team scores" do
sign_in_school_delegate
post :calculate_team_scores, params: { id: 1 }
redirect
end
end