- def test_read_hidden_note
- hidden_note_with_comment = create(:note_with_comments, :status => "hidden")
-
- get :note, :id => hidden_note_with_comment.id
- assert_response :not_found
- assert_template "browse/not_found"
- assert_template :layout => "map"
-
- xhr :get, :note, :id => hidden_note_with_comment.id
- assert_response :not_found
- assert_template "browse/not_found"
- assert_template :layout => "xhr"
-
- session[:user] = users(:moderator_user).id
-
- browse_check "note", hidden_note_with_comment.id, "browse/note"
- end
-
- def test_read_note_hidden_comments
- note_with_hidden_comment = create(:note_with_comments, :comments_count => 2) do |note|
- create(:note_comment, :note => note, :visible => false)
- end
+ def test_read_changeset_hidden_comments
+ changeset = create(:changeset)
+ create_list(:changeset_comment, 3, :changeset => changeset)
+ create(:changeset_comment, :visible => false, :changeset => changeset)