summaryrefslogtreecommitdiffstats
path: root/test/integration/routing/watchers_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/routing/watchers_test.rb')
-rw-r--r--test/integration/routing/watchers_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/integration/routing/watchers_test.rb b/test/integration/routing/watchers_test.rb
index be35d5667..f2f9fcb3e 100644
--- a/test/integration/routing/watchers_test.rb
+++ b/test/integration/routing/watchers_test.rb
@@ -47,15 +47,5 @@ class RoutingWatchersTest < ActionDispatch::IntegrationTest
{ :method => 'delete', :path => "/watchers/watch" },
{ :controller => 'watchers', :action => 'unwatch' }
)
- assert_routing(
- { :method => 'post', :path => "/issues/12/watchers.xml" },
- { :controller => 'watchers', :action => 'create',
- :object_type => 'issue', :object_id => '12', :format => 'xml' }
- )
- assert_routing(
- { :method => 'delete', :path => "/issues/12/watchers/3.xml" },
- { :controller => 'watchers', :action => 'destroy',
- :object_type => 'issue', :object_id => '12', :user_id => '3', :format => 'xml'}
- )
end
end