X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/651c6b0d4c3cae766385d47d5d7043c8d80d9437..a0d0dee8869a0199262aad57f23752c2b4a390ef:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index f539dd739..e93e92a69 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -125,10 +125,27 @@ class IssuesTest < ApplicationSystemTestCase check :reassign click_on "Add Comment" + assert_content "and the issue was reassigned" + assert_current_path issues_path + issue.reload assert_equal "moderator", issue.assigned_role end + def test_reassign_issue_as_super_user + issue = create(:issue) + sign_in_as(create(:super_user)) + + visit issue_path(issue) + + fill_in :issue_comment_body, :with => "reassigning to moderators" + check :reassign + click_on "Add Comment" + + assert_content "and the issue was reassigned" + assert_current_path issue_path(issue) + end + def test_issue_index_with_multiple_roles user1 = create(:user) user2 = create(:user)