From 7de32f3cd54ac7d31693443e3daf2ba3d16066ee Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 1 Oct 2013 19:34:36 +0100 Subject: [PATCH] Add a basic test for browse#note --- test/functional/browse_controller_test.rb | 6 ++++++ test/test_helper.rb | 2 ++ 2 files changed, 8 insertions(+) diff --git a/test/functional/browse_controller_test.rb b/test/functional/browse_controller_test.rb index b320be1e3..e2937c5d8 100644 --- a/test/functional/browse_controller_test.rb +++ b/test/functional/browse_controller_test.rb @@ -78,6 +78,10 @@ class BrowseControllerTest < ActionController::TestCase browse_check 'changeset', changesets(:normal_user_first_change).id end + def test_read_note + browse_check 'note', notes(:open_note).id + end + ## # Methods to check redaction. # @@ -126,6 +130,8 @@ class BrowseControllerTest < ActionController::TestCase assert_select "body div#content div.browse_details[id=4] div.common", 1 end +private + # This is a convenience method for most of the above checks # First we check that when we don't have an id, it will correctly return a 404 # then we check that we get the correct 404 when a non-existant id is passed diff --git a/test/test_helper.rb b/test/test_helper.rb index 703347c9c..4e95bb7a8 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -53,6 +53,8 @@ class ActiveSupport::TestCase fixtures :client_applications fixtures :redactions + + fixtures :notes, :note_comments end ## -- 2.43.2