X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7441f15b4fd59735ae00a16b47cfcf7eb99260a6..368ce0000d585a8bf04e6189c818577756e29c02:/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"