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