choose I18n.t("reports.new.categories.diary_entry.spam")
fill_in "report_details", :with => "This is advertising"
- 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 @diary_entry, Issue.last.reportable
end
def test_it_reopens_issue
choose I18n.t("reports.new.categories.diary_entry.spam")
fill_in "report_details", :with => "This is advertising"
- click_on "Create Report"
+ assert_no_difference "Issue.count" do
+ click_on "Create Report"
+ end
issue.reload
assert_not issue.resolved?