X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d257c217405efb042b1507c3d134f3912e0e7a98..9401e451d18d34ad8fd27161e66496171dbed54f:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 6a7094151..2a9862ed9 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -30,6 +30,17 @@ 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 **with kramdown**") + + visit issue_path(issue) + assert_content I18n.t("issues.show.reports", :count => 1) + assert_content "test report text with kramdown" + assert_selector "strong", :text => "with kramdown" + end + def test_view_issues_with_no_reported_user sign_in_as(create(:moderator_user)) anonymous_note = create(:note_with_comments) @@ -113,7 +124,7 @@ class IssuesTest < ApplicationSystemTestCase visit issues_path - assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)) - assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)) + assert_link I18n.t("issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1) + assert_link I18n.t("issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2) end end