X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3a386f185c954d71a9b5d0747d017f99c8ccb6ff..2fc70be734fb6439b1eef340d396af62965817df:/test/system/report_diary_entry_test.rb?ds=sidebyside diff --git a/test/system/report_diary_entry_test.rb b/test/system/report_diary_entry_test.rb index 542e8ba0c..e9262388a 100644 --- a/test/system/report_diary_entry_test.rb +++ b/test/system/report_diary_entry_test.rb @@ -22,9 +22,9 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase assert page.has_content? "Report" assert page.has_content? I18n.t("issues.new.disclaimer.intro") - choose I18n.t("reports.categories.DiaryEntry.spam") + choose I18n.t("reports.categories.diary_entry.spam") fill_in "report_details", :with => "This is advertising" - click_on "Save changes" + click_on "Create Report" assert page.has_content? "Your report has been registered sucessfully" end @@ -41,12 +41,18 @@ class ReportDiaryEntryTest < ApplicationSystemTestCase assert page.has_content? "Report" assert page.has_content? I18n.t("issues.new.disclaimer.intro") - choose I18n.t("reports.categories.DiaryEntry.spam") + choose I18n.t("reports.categories.diary_entry.spam") fill_in "report_details", :with => "This is advertising" - click_on "Save changes" + click_on "Create Report" issue.reload assert !issue.resolved? assert issue.open? end + + def test_missing_report_params + sign_in_as(create(:user)) + visit new_report_path + assert page.has_content? I18n.t("reports.new.missing_params") + end end