diff options
Diffstat (limited to 'test/integration/routing/roles_test.rb')
-rw-r--r-- | test/integration/routing/roles_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/integration/routing/roles_test.rb b/test/integration/routing/roles_test.rb index 5541984f3..b836a1090 100644 --- a/test/integration/routing/roles_test.rb +++ b/test/integration/routing/roles_test.rb @@ -24,14 +24,6 @@ class RoutingRolesTest < ActionDispatch::IntegrationTest { :controller => 'roles', :action => 'index' } ) assert_routing( - { :method => 'get', :path => "/roles.xml" }, - { :controller => 'roles', :action => 'index', :format => 'xml' } - ) - assert_routing( - { :method => 'get', :path => "/roles/2.xml" }, - { :controller => 'roles', :action => 'show', :id => '2', :format => 'xml' } - ) - assert_routing( { :method => 'get', :path => "/roles/new" }, { :controller => 'roles', :action => 'new' } ) |