X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/518cf69b3429d12b22efe52b5be8fd3e910b7ac4..29f12c454799ed62745803f2d8423d9c59ed1a93:/test/system/report_note_test.rb?ds=sidebyside diff --git a/test/system/report_note_test.rb b/test/system/report_note_test.rb index 759306e08..a18366d01 100644 --- a/test/system/report_note_test.rb +++ b/test/system/report_note_test.rb @@ -20,12 +20,13 @@ class ReportNoteTest < ApplicationSystemTestCase choose I18n.t("reports.new.categories.note.spam") fill_in "report_details", :with => "This 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 == note + assert_equal note, Issue.last.reportable end def test_can_report_notes_with_author @@ -39,11 +40,12 @@ class ReportNoteTest < ApplicationSystemTestCase choose I18n.t("reports.new.categories.note.spam") fill_in "report_details", :with => "This 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 == note + assert_equal note, Issue.last.reportable end end