test: route: split news tests

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8547 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-01-08 02:38:41 +00:00
parent 03e10cbc8f
commit c5f41baa94
1 changed files with 4 additions and 1 deletions

View File

@ -18,7 +18,7 @@
require File.expand_path('../../../test_helper', __FILE__)
class RoutingNewsTest < ActionController::IntegrationTest
def test_news
def test_news_index
assert_routing(
{ :method => 'get', :path => "/news" },
{ :controller => 'news', :action => 'index' }
@ -35,6 +35,9 @@ class RoutingNewsTest < ActionController::IntegrationTest
{ :method => 'get', :path => "/news.json" },
{ :controller => 'news', :action => 'index', :format => 'json' }
)
end
def test_news
assert_routing(
{ :method => 'get', :path => "/news/2" },
{ :controller => 'news', :action => 'show', :id => '2' }