X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/518cf69b3429d12b22efe52b5be8fd3e910b7ac4..29f12c454799ed62745803f2d8423d9c59ed1a93:/test/system/report_diary_entry_test.rb diff --git a/test/system/report_diary_entry_test.rb b/test/system/report_diary_entry_test.rb index 15752777c..950deb695 100644 --- a/test/system/report_diary_entry_test.rb +++ b/test/system/report_diary_entry_test.rb @@ -24,9 +24,13 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase choose I18n.t("reports.new.categories.diary_entry.spam") fill_in "report_details", :with => "This is advertising" - 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 @diary_entry, Issue.last.reportable end def test_it_reopens_issue @@ -43,7 +47,9 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase choose I18n.t("reports.new.categories.diary_entry.spam") fill_in "report_details", :with => "This is advertising" - click_on "Create Report" + assert_no_difference "Issue.count" do + click_on "Create Report" + end issue.reload assert_not issue.resolved?