test: replace "should_route" of "documents" to "assert_routing" at integration/routing_test.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8220 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4d2a832fb6
commit
f968acbfac
|
@ -123,17 +123,39 @@ class RoutingTest < ActionController::IntegrationTest
|
|||
)
|
||||
end
|
||||
|
||||
context "documents" do
|
||||
should_route :get, "/projects/567/documents", :controller => 'documents', :action => 'index', :project_id => '567'
|
||||
should_route :get, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
|
||||
should_route :get, "/documents/22", :controller => 'documents', :action => 'show', :id => '22'
|
||||
should_route :get, "/documents/22/edit", :controller => 'documents', :action => 'edit', :id => '22'
|
||||
|
||||
should_route :post, "/projects/567/documents", :controller => 'documents', :action => 'create', :project_id => '567'
|
||||
should_route :put, "/documents/22", :controller => 'documents', :action => 'update', :id => '22'
|
||||
should_route :delete, "/documents/22", :controller => 'documents', :action => 'destroy', :id => '22'
|
||||
|
||||
should_route :post, "/documents/22/add_attachment", :controller => 'documents', :action => 'add_attachment', :id => '22'
|
||||
def test_documents
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/projects/567/documents" },
|
||||
{ :controller => 'documents', :action => 'index', :project_id => '567' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/projects/567/documents/new" },
|
||||
{ :controller => 'documents', :action => 'new', :project_id => '567' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/documents/22" },
|
||||
{ :controller => 'documents', :action => 'show', :id => '22' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/documents/22/edit" },
|
||||
{ :controller => 'documents', :action => 'edit', :id => '22' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'post', :path => "/projects/567/documents" },
|
||||
{ :controller => 'documents', :action => 'create', :project_id => '567' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'put', :path => "/documents/22" },
|
||||
{ :controller => 'documents', :action => 'update', :id => '22' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'delete', :path => "/documents/22" },
|
||||
{ :controller => 'documents', :action => 'destroy', :id => '22' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'post', :path => "/documents/22/add_attachment" },
|
||||
{ :controller => 'documents', :action => 'add_attachment', :id => '22' }
|
||||
)
|
||||
end
|
||||
|
||||
context "roles" do
|
||||
|
|
Loading…
Reference in New Issue