test: route: split documents test whether scoped under project or not
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8549 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
917d42733a
commit
b6c920a976
|
@ -18,7 +18,7 @@
|
||||||
require File.expand_path('../../../test_helper', __FILE__)
|
require File.expand_path('../../../test_helper', __FILE__)
|
||||||
|
|
||||||
class RoutingDocumentsTest < ActionController::IntegrationTest
|
class RoutingDocumentsTest < ActionController::IntegrationTest
|
||||||
def test_documents
|
def test_documents_scoped_under_project
|
||||||
assert_routing(
|
assert_routing(
|
||||||
{ :method => 'get', :path => "/projects/567/documents" },
|
{ :method => 'get', :path => "/projects/567/documents" },
|
||||||
{ :controller => 'documents', :action => 'index', :project_id => '567' }
|
{ :controller => 'documents', :action => 'index', :project_id => '567' }
|
||||||
|
@ -27,6 +27,13 @@ class RoutingDocumentsTest < ActionController::IntegrationTest
|
||||||
{ :method => 'get', :path => "/projects/567/documents/new" },
|
{ :method => 'get', :path => "/projects/567/documents/new" },
|
||||||
{ :controller => 'documents', :action => 'new', :project_id => '567' }
|
{ :controller => 'documents', :action => 'new', :project_id => '567' }
|
||||||
)
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'post', :path => "/projects/567/documents" },
|
||||||
|
{ :controller => 'documents', :action => 'create', :project_id => '567' }
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_documents
|
||||||
assert_routing(
|
assert_routing(
|
||||||
{ :method => 'get', :path => "/documents/22" },
|
{ :method => 'get', :path => "/documents/22" },
|
||||||
{ :controller => 'documents', :action => 'show', :id => '22' }
|
{ :controller => 'documents', :action => 'show', :id => '22' }
|
||||||
|
@ -35,10 +42,6 @@ class RoutingDocumentsTest < ActionController::IntegrationTest
|
||||||
{ :method => 'get', :path => "/documents/22/edit" },
|
{ :method => 'get', :path => "/documents/22/edit" },
|
||||||
{ :controller => 'documents', :action => 'edit', :id => '22' }
|
{ :controller => 'documents', :action => 'edit', :id => '22' }
|
||||||
)
|
)
|
||||||
assert_routing(
|
|
||||||
{ :method => 'post', :path => "/projects/567/documents" },
|
|
||||||
{ :controller => 'documents', :action => 'create', :project_id => '567' }
|
|
||||||
)
|
|
||||||
assert_routing(
|
assert_routing(
|
||||||
{ :method => 'put', :path => "/documents/22" },
|
{ :method => 'put', :path => "/documents/22" },
|
||||||
{ :controller => 'documents', :action => 'update', :id => '22' }
|
{ :controller => 'documents', :action => 'update', :id => '22' }
|
||||||
|
|
Loading…
Reference in New Issue