diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-02 17:39:56 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-02 17:39:56 +0000 |
commit | 83b4343d2d403a21de4614016e165091e4c5914f (patch) | |
tree | 52fed892e8c3363c238a1a9e36383e7c34923b5a /test/integration | |
parent | b5e90972d88c69a1ef2c9e90879e8926d192acff (diff) | |
download | redmine-83b4343d2d403a21de4614016e165091e4c5914f.tar.gz redmine-83b4343d2d403a21de4614016e165091e4c5914f.zip |
Refactor: move method, ProjectsController#save_activities to ProjectEnumerationsController#save
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4053 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/routing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/routing_test.rb b/test/integration/routing_test.rb index 66836c4f9..74a0f7a71 100644 --- a/test/integration/routing_test.rb +++ b/test/integration/routing_test.rb @@ -185,7 +185,7 @@ class RoutingTest < ActionController::IntegrationTest should_route :post, "/projects/33/files/new", :controller => 'files', :action => 'new', :id => '33' should_route :post, "/projects/64/archive", :controller => 'projects', :action => 'archive', :id => '64' should_route :post, "/projects/64/unarchive", :controller => 'projects', :action => 'unarchive', :id => '64' - should_route :post, "/projects/64/activities/save", :controller => 'projects', :action => 'save_activities', :id => '64' + should_route :post, "/projects/64/activities/save", :controller => 'project_enumerations', :action => 'save', :id => '64' should_route :put, "/projects/1.xml", :controller => 'projects', :action => 'edit', :id => '1', :format => 'xml' |