]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/issues_test.rb
Format report text with kramdown
[rails.git] / test / system / issues_test.rb
index fd5f433fc32911427e5c9649b49b7c72fe052a7a..2a9862ed9625e40a3028804e9563ad56fe702ed0 100644 (file)
@@ -33,11 +33,12 @@ class IssuesTest < ApplicationSystemTestCase
   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")
+    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"
+    assert_content "test report text with kramdown"
+    assert_selector "strong", :text => "with kramdown"
   end
 
   def test_view_issues_with_no_reported_user