]> git.openstreetmap.org Git - rails.git/commitdiff
Add test of individual issue view with report
authorHarry Wood <github@harrywood.co.uk>
Thu, 28 Apr 2022 21:32:44 +0000 (22:32 +0100)
committerHarry Wood <github@harrywood.co.uk>
Fri, 29 Apr 2022 00:29:44 +0000 (01:29 +0100)
Add a test covering viewing an individual issue, a view which includes text of a report.

test/system/issues_test.rb

index 08f2c92dffdd5ae90d67c66d0d614cf68e6dd0b3..fd5f433fc32911427e5c9649b49b7c72fe052a7a 100644 (file)
@@ -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)