X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/46c183ffeb68a45e6e0793c813f2756109f40642..29f12c454799ed62745803f2d8423d9c59ed1a93:/test/system/report_user_test.rb diff --git a/test/system/report_user_test.rb b/test/system/report_user_test.rb index dc6c51175..758c91eda 100644 --- a/test/system/report_user_test.rb +++ b/test/system/report_user_test.rb @@ -6,7 +6,7 @@ class ReportUserTest < ApplicationSystemTestCase visit browse_note_path(note) assert page.has_content?(note.comments.first.body) - assert !page.has_content?(I18n.t("user.view.report")) + assert_not page.has_content?(I18n.t("user.view.report")) end def test_can_report_user @@ -16,15 +16,16 @@ class ReportUserTest < ApplicationSystemTestCase click_on I18n.t("user.view.report") assert page.has_content? "Report" - assert page.has_content? I18n.t("issues.new.disclaimer.intro") + assert page.has_content? I18n.t("reports.new.disclaimer.intro") - choose I18n.t("reports.categories.user.vandal") + choose I18n.t("reports.new.categories.user.vandal") fill_in "report_details", :with => "This user is a vandal" - 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 == user + assert_equal user, Issue.last.reportable end end