]> git.openstreetmap.org Git - rails.git/blobdiff - test/system/report_user_test.rb
Improve system tests for issues
[rails.git] / test / system / report_user_test.rb
index 8bb7d9dd7ed397284faa97ee1952ebecfc0f6c68..758c91eda16e6e2668fb5b050b5eb7f4c50bc93b 100644 (file)
@@ -20,11 +20,12 @@ class ReportUserTest < ApplicationSystemTestCase
 
     choose I18n.t("reports.new.categories.user.vandal")
     fill_in "report_details", :with => "This user is a 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 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
   end
 end