diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-16 10:54:33 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-16 10:54:33 +0000 |
commit | eae9c9ab2be43c64c830a03e414b51a08571c957 (patch) | |
tree | cbe6b20000d60ad854ad8f2e245cbdfeca4b4787 /test/integration/routing/queries_test.rb | |
parent | cd6b2f2268d3e02ae652d3ad37f02170e3647a72 (diff) | |
download | redmine-eae9c9ab2be43c64c830a03e414b51a08571c957.tar.gz redmine-eae9c9ab2be43c64c830a03e414b51a08571c957.zip |
Isolates all API routing tests to a specific test case.
git-svn-id: http://svn.redmine.org/redmine/trunk@13604 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/routing/queries_test.rb')
-rw-r--r-- | test/integration/routing/queries_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/integration/routing/queries_test.rb b/test/integration/routing/queries_test.rb index ac50fbca7..226a5b50c 100644 --- a/test/integration/routing/queries_test.rb +++ b/test/integration/routing/queries_test.rb @@ -20,14 +20,6 @@ require File.expand_path('../../../test_helper', __FILE__) class RoutingQueriesTest < ActionDispatch::IntegrationTest def test_queries assert_routing( - { :method => 'get', :path => "/queries.xml" }, - { :controller => 'queries', :action => 'index', :format => 'xml' } - ) - assert_routing( - { :method => 'get', :path => "/queries.json" }, - { :controller => 'queries', :action => 'index', :format => 'json' } - ) - assert_routing( { :method => 'get', :path => "/queries/new" }, { :controller => 'queries', :action => 'new' } ) |