Add basic tests for browse#new_note and browse#query

This commit is contained in:
Tom Hughes 2019-01-09 21:12:33 +00:00
parent 5c877e0fa4
commit 62637645bf

View file

@ -40,6 +40,10 @@ class BrowseControllerTest < ActionController::TestCase
{ :path => "/note/new", :method => :get },
{ :controller => "browse", :action => "new_note" }
)
assert_routing(
{ :path => "/query", :method => :get },
{ :controller => "browse", :action => "query" }
)
end
def test_read_relation
@ -220,6 +224,18 @@ class BrowseControllerTest < ActionController::TestCase
assert_select ".browse-section.browse-relation", 2
end
def test_new_note
get :new_note
assert_response :success
assert_template "browse/new_note"
end
def test_query
get :query
assert_response :success
assert_template "browse/query"
end
private
# This is a convenience method for most of the above checks