assert page.has_content? "Report"
assert page.has_content? I18n.t("reports.new.disclaimer.intro")
- choose I18n.t("reports.new.categories.note.spam")
+ choose I18n.t("reports.new.categories.note.spam_label")
fill_in "report_details", :with => "This is spam"
assert_difference "Issue.count", 1 do
click_on "Create Report"
assert page.has_content? "Your report has been registered sucessfully"
assert_equal note, Issue.last.reportable
+ assert_equal "moderator", Issue.last.assigned_role
end
def test_can_report_notes_with_author
assert page.has_content? "Report"
assert page.has_content? I18n.t("reports.new.disclaimer.intro")
- choose I18n.t("reports.new.categories.note.spam")
+ choose I18n.t("reports.new.categories.note.spam_label")
fill_in "report_details", :with => "This is spam"
assert_difference "Issue.count", 1 do
click_on "Create Report"
assert page.has_content? "Your report has been registered sucessfully"
assert_equal note, Issue.last.reportable
+ assert_equal "moderator", Issue.last.assigned_role
end
end