1 require "application_system_test_case"
3 class ReportAnonymousNoteTest < ApplicationSystemTestCase
4 def test_no_flag_when_not_logged_in
5 note = create(:note_with_comments)
6 visit browse_note_path(note)
7 assert page.has_content?(note.comments.first.body)
9 assert !page.has_content?("\u2690")
12 def test_can_report_anonymous_notes
13 note = create(:note_with_comments)
14 sign_in_as(create(:user))
15 visit browse_note_path(note)
18 assert page.has_content? "Report"
19 assert page.has_content? I18n.t("issues.new.disclaimer.intro")
21 choose I18n.t("reports.categories.note.spam")
22 fill_in "report_details", :with => "This is spam"
23 click_on "Create Report"
25 assert page.has_content? "Your report has been registered sucessfully"
27 assert_equal 1, Issue.count
28 assert Issue.last.reportable == note