summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-08-17 15:03:58 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-08-17 15:03:58 +0000
commit3eff27344b0bef7703ba248d0a2312bfca95c182 (patch)
treeeefbe2247a166db315bf278b75300a959df00936 /test/integration
parente63acb70ca82d0c62476c92bbe815330ee01ad93 (diff)
downloadredmine-3eff27344b0bef7703ba248d0a2312bfca95c182.tar.gz
redmine-3eff27344b0bef7703ba248d0a2312bfca95c182.zip
Refactor: move IssuesController#auto_complete to a new controller. #4382
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3945 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/routing_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/routing_test.rb b/test/integration/routing_test.rb
index b9eac552e..607df5b06 100644
--- a/test/integration/routing_test.rb
+++ b/test/integration/routing_test.rb
@@ -100,7 +100,7 @@ class RoutingTest < ActionController::IntegrationTest
should_route :get, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
should_route :post, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
- should_route :get, "/issues/auto_complete", :controller => 'issues', :action => 'auto_complete'
+ should_route :get, "/issues/auto_complete", :controller => 'auto_completes', :action => 'issues'
end
context "issue categories" do