]> source.dussan.org Git - redmine.git/commitdiff
Updated documents routing tests.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 30 Nov 2011 23:12:43 +0000 (23:12 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 30 Nov 2011 23:12:43 +0000 (23:12 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8011 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/routing_test.rb

index e163b02d542d32e1f9b35a7d52b12d8e301b0749..14f10bd725205dd6166ce8f99e65f76d8317ceb0 100644 (file)
@@ -51,9 +51,9 @@ class RoutingTest < ActionController::IntegrationTest
     should_route :get, "/documents/22", :controller => 'documents', :action => 'show', :id => '22'
     should_route :get, "/documents/22/edit", :controller => 'documents', :action => 'edit', :id => '22'
 
-    should_route :post, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
-    should_route :post, "/documents/567/edit", :controller => 'documents', :action => 'edit', :id => '567'
-    should_route :post, "/documents/567/destroy", :controller => 'documents', :action => 'destroy', :id => '567'
+    should_route :post, "/projects/567/documents", :controller => 'documents', :action => 'create', :project_id => '567'
+    should_route :put, "/documents/22", :controller => 'documents', :action => 'update', :id => '22'
+    should_route :delete, "/documents/22", :controller => 'documents', :action => 'destroy', :id => '22'
   end
   
   context "groups" do