From 1b1c510ff99cfca216082926e5ce9e2e981b2506 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 9 Jan 2012 18:37:16 +0000 Subject: Ability to add non-member users as watchers (#5159). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8592 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/watchers_test.rb | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'test/integration') diff --git a/test/integration/routing/watchers_test.rb b/test/integration/routing/watchers_test.rb index 4cd12ffca..441d2533c 100644 --- a/test/integration/routing/watchers_test.rb +++ b/test/integration/routing/watchers_test.rb @@ -19,16 +19,22 @@ require File.expand_path('../../../test_helper', __FILE__) class RoutingWatchersTest < ActionController::IntegrationTest def test_watchers - ["get", "post"].each do |method| - assert_routing( - { :method => method, :path => "/watchers/new" }, - { :controller => 'watchers', :action => 'new' } - ) - end + assert_routing( + { :method => 'get', :path => "/watchers/new" }, + { :controller => 'watchers', :action => 'new' } + ) + assert_routing( + { :method => 'post', :path => "/watchers" }, + { :controller => 'watchers', :action => 'create' } + ) assert_routing( { :method => 'post', :path => "/watchers/destroy" }, { :controller => 'watchers', :action => 'destroy' } ) + assert_routing( + { :method => 'get', :path => "/watchers/autocomplete_for_user" }, + { :controller => 'watchers', :action => 'autocomplete_for_user' } + ) assert_routing( { :method => 'post', :path => "/watchers/watch" }, { :controller => 'watchers', :action => 'watch' } -- cgit v1.2.3