From: Toshi MARUYAMA Date: Sun, 8 Jan 2012 02:38:41 +0000 (+0000) Subject: test: route: split news tests X-Git-Tag: 1.4.0~743 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c5f41baa945f2d331b791755350bdb8db85da3dd;p=redmine.git test: route: split news tests git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8547 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/integration/routing/news_test.rb b/test/integration/routing/news_test.rb index 70c8b3afd..fd0e0f377 100644 --- a/test/integration/routing/news_test.rb +++ b/test/integration/routing/news_test.rb @@ -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' }