diff options
Diffstat (limited to 'test/integration/routing/news_test.rb')
-rw-r--r-- | test/integration/routing/news_test.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/integration/routing/news_test.rb b/test/integration/routing/news_test.rb index a1ee7b12b..c7ca04016 100644 --- a/test/integration/routing/news_test.rb +++ b/test/integration/routing/news_test.rb @@ -27,14 +27,6 @@ class RoutingNewsTest < ActionDispatch::IntegrationTest { :method => 'get', :path => "/news.atom" }, { :controller => 'news', :action => 'index', :format => 'atom' } ) - assert_routing( - { :method => 'get', :path => "/news.xml" }, - { :controller => 'news', :action => 'index', :format => 'xml' } - ) - assert_routing( - { :method => 'get', :path => "/news.json" }, - { :controller => 'news', :action => 'index', :format => 'json' } - ) end def test_news @@ -71,16 +63,6 @@ class RoutingNewsTest < ActionDispatch::IntegrationTest :project_id => '567' } ) assert_routing( - { :method => 'get', :path => "/projects/567/news.xml" }, - { :controller => 'news', :action => 'index', :format => 'xml', - :project_id => '567' } - ) - assert_routing( - { :method => 'get', :path => "/projects/567/news.json" }, - { :controller => 'news', :action => 'index', :format => 'json', - :project_id => '567' } - ) - assert_routing( { :method => 'get', :path => "/projects/567/news/new" }, { :controller => 'news', :action => 'new', :project_id => '567' } ) |