]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/report_diary_comment_test.rb
Improve system tests for issues
[rails.git] / test / system / report_diary_comment_test.rb
index 852bcfa65d6d3a7fece6d822db7d8a8e571c6fd3..356aac016ce9c3f655fe0a266c83bdb6f0db5a20 100644 (file)
@@ -25,11 +25,12 @@ class ReportDiaryCommentTest < ApplicationSystemTestCase
 
     choose I18n.t("reports.new.categories.diary_comment.spam")
     fill_in "report_details", :with => "This comment is spam"
-    click_on "Create Report"
+    assert_difference "Issue.count", 1 do
+      click_on "Create Report"
+    end
 
     assert page.has_content? "Your report has been registered sucessfully"
 
-    assert_equal 1, Issue.count
-    assert Issue.last.reportable == @comment
+    assert_equal @comment, Issue.last.reportable
   end
 end