test: route: split news tests whether scoped under project or not

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8432 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-12-30 05:14:01 +00:00
parent ba44548332
commit 1b252d68f3
1 changed files with 23 additions and 20 deletions

View File

@ -35,6 +35,29 @@ class RoutingNewsTest < ActionController::IntegrationTest
{ :method => 'get', :path => "/news.json" },
{ :controller => 'news', :action => 'index', :format => 'json' }
)
assert_routing(
{ :method => 'get', :path => "/news/2" },
{ :controller => 'news', :action => 'show', :id => '2' }
)
assert_routing(
{ :method => 'get', :path => "/news/234" },
{ :controller => 'news', :action => 'show', :id => '234' }
)
assert_routing(
{ :method => 'get', :path => "/news/567/edit" },
{ :controller => 'news', :action => 'edit', :id => '567' }
)
assert_routing(
{ :method => 'put', :path => "/news/567" },
{ :controller => 'news', :action => 'update', :id => '567' }
)
assert_routing(
{ :method => 'delete', :path => "/news/567" },
{ :controller => 'news', :action => 'destroy', :id => '567' }
)
end
def test_news_scoped_under_project
assert_routing(
{ :method => 'get', :path => "/projects/567/news" },
{ :controller => 'news', :action => 'index', :project_id => '567' }
@ -54,33 +77,13 @@ class RoutingNewsTest < ActionController::IntegrationTest
{ :controller => 'news', :action => 'index', :format => 'json',
:project_id => '567' }
)
assert_routing(
{ :method => 'get', :path => "/news/2" },
{ :controller => 'news', :action => 'show', :id => '2' }
)
assert_routing(
{ :method => 'get', :path => "/projects/567/news/new" },
{ :controller => 'news', :action => 'new', :project_id => '567' }
)
assert_routing(
{ :method => 'get', :path => "/news/234" },
{ :controller => 'news', :action => 'show', :id => '234' }
)
assert_routing(
{ :method => 'get', :path => "/news/567/edit" },
{ :controller => 'news', :action => 'edit', :id => '567' }
)
assert_routing(
{ :method => 'post', :path => "/projects/567/news" },
{ :controller => 'news', :action => 'create', :project_id => '567' }
)
assert_routing(
{ :method => 'put', :path => "/news/567" },
{ :controller => 'news', :action => 'update', :id => '567' }
)
assert_routing(
{ :method => 'delete', :path => "/news/567" },
{ :controller => 'news', :action => 'destroy', :id => '567' }
)
end
end