X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/29f12c454799ed62745803f2d8423d9c59ed1a93..0888f43d7b5a5e23874ff1a291049b90481d1273:/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 950deb695..1db733ab7 100644 --- a/test/system/report_diary_entry_test.rb +++ b/test/system/report_diary_entry_test.rb @@ -22,7 +22,7 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase assert page.has_content? "Report" assert page.has_content? I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.new.categories.diary_entry.spam") + choose I18n.t("reports.new.categories.diary_entry.spam_label") fill_in "report_details", :with => "This is advertising" assert_difference "Issue.count", 1 do click_on "Create Report" @@ -31,6 +31,7 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase assert page.has_content? "Your report has been registered sucessfully" assert_equal @diary_entry, Issue.last.reportable + assert_equal "administrator", Issue.last.assigned_role end def test_it_reopens_issue @@ -45,7 +46,7 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase assert page.has_content? "Report" assert page.has_content? I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.new.categories.diary_entry.spam") + choose I18n.t("reports.new.categories.diary_entry.spam_label") fill_in "report_details", :with => "This is advertising" assert_no_difference "Issue.count" do click_on "Create Report"