summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-09-15 16:50:25 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-09-15 16:50:25 +0000
commitbe6e0927f3ce95e751bd3c6f4a61de6979898012 (patch)
treea71c41d3f1f19ef60418f945fcb70494a39a516c /test
parentcdfc57d5442f72d62437f52af480049c943ecbf8 (diff)
downloadredmine-be6e0927f3ce95e751bd3c6f4a61de6979898012.tar.gz
redmine-be6e0927f3ce95e751bd3c6f4a61de6979898012.zip
Refactor: Split VersionsController#edit into #edit and #update
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4088 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/versions_controller_test.rb4
-rw-r--r--test/integration/routing_test.rb6
2 files changed, 8 insertions, 2 deletions
diff --git a/test/functional/versions_controller_test.rb b/test/functional/versions_controller_test.rb
index f738794ae..9e8cdf90d 100644
--- a/test/functional/versions_controller_test.rb
+++ b/test/functional/versions_controller_test.rb
@@ -113,9 +113,9 @@ class VersionsControllerTest < ActionController::TestCase
assert_not_nil Version.find_by_status('closed')
end
- def test_post_edit
+ def test_post_update
@request.session[:user_id] = 2
- post :edit, :id => 2,
+ post :update, :id => 2,
:version => { :name => 'New version name',
:effective_date => Date.today.strftime("%Y-%m-%d")}
assert_redirected_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => 'ecookbook'
diff --git a/test/integration/routing_test.rb b/test/integration/routing_test.rb
index 38c1b2a0e..ba4948008 100644
--- a/test/integration/routing_test.rb
+++ b/test/integration/routing_test.rb
@@ -251,10 +251,16 @@ class RoutingTest < ActionController::IntegrationTest
should_route :post, "/users/567/memberships/12/destroy", :controller => 'users', :action => 'destroy_membership', :id => '567', :membership_id => '12'
end
+ # TODO: should they all be scoped under /projects/:project_id ?
context "versions" do
should_route :get, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo'
+ 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, "/versions/update/1", :controller => 'versions', :action => 'update', :id => '1'
+
+ should_route :delete, "/versions/destroy/1", :controller => 'versions', :action => 'destroy', :id => '1'
end
context "wiki (singular, project's pages)" do