X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f6a87e443a137ac10f0ed1305399f3fd651f6a3..db16445fc010b1d6733b557d54dc3d1581991796:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 08f2c92df..fd5f433fc 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -30,6 +30,16 @@ class IssuesTest < ApplicationSystemTestCase assert_content issues.first.reported_user.display_name end + def test_view_issue_with_report + sign_in_as(create(:moderator_user)) + issue = create(:issue, :assigned_role => "moderator") + issue.reports << create(:report, :details => "test report text") + + visit issue_path(issue) + assert_content I18n.t("issues.show.reports", :count => 1) + assert_content "test report text" + end + def test_view_issues_with_no_reported_user sign_in_as(create(:moderator_user)) anonymous_note = create(:note_with_comments)