diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-16 18:27:33 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-09-16 18:27:33 +0000 |
commit | 969bf2107b2ebcdb480cbb56f523ecb72643146d (patch) | |
tree | 07b0722156787256d9a511aaf70d4995dacf2a73 /test/integration | |
parent | bde8ab84f27426e425ba2d6a7e733571fcd5242e (diff) | |
download | redmine-969bf2107b2ebcdb480cbb56f523ecb72643146d.tar.gz redmine-969bf2107b2ebcdb480cbb56f523ecb72643146d.zip |
Refactor: split VersionsController#new into #new and #create
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4090 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 ba4948008..794a7780e 100644 --- a/test/integration/routing_test.rb +++ b/test/integration/routing_test.rb @@ -257,7 +257,7 @@ class RoutingTest < ActionController::IntegrationTest should_route :get, "/versions/show/1", :controller => 'versions', :action => 'show', :id => '1' should_route :get, "/versions/edit/1", :controller => 'versions', :action => 'edit', :id => '1' - should_route :post, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo' + should_route :post, "/projects/foo/versions", :controller => 'versions', :action => 'create', :project_id => 'foo' should_route :post, "/versions/update/1", :controller => 'versions', :action => 'update', :id => '1' should_route :delete, "/versions/destroy/1", :controller => 'versions', :action => 'destroy', :id => '1' |