Add basic tests for browse#new_note and browse#query
This commit is contained in:
parent
5c877e0fa4
commit
62637645bf
1 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue