]> source.dussan.org Git - redmine.git/commitdiff
test: replace "should_route" of "documents" to "assert_routing" at integration/routin...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 15 Dec 2011 07:06:11 +0000 (07:06 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 15 Dec 2011 07:06:11 +0000 (07:06 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8220 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/routing_test.rb

index 1f0d09aab93bbcc7268acfb90077fe18aa117049..aa5f423f89bc823b37131579ac0d1e26414c2691 100644 (file)
@@ -123,17 +123,39 @@ class RoutingTest < ActionController::IntegrationTest
       )
   end
 
-  context "documents" do
-    should_route :get, "/projects/567/documents", :controller => 'documents', :action => 'index', :project_id => '567'
-    should_route :get, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
-    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", :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'
-
-    should_route :post, "/documents/22/add_attachment", :controller => 'documents', :action => 'add_attachment', :id => '22'
+  def test_documents
+    assert_routing(
+        { :method => 'get', :path => "/projects/567/documents" },
+        { :controller => 'documents', :action => 'index', :project_id => '567' }
+      )
+    assert_routing(
+        { :method => 'get', :path => "/projects/567/documents/new" },
+        { :controller => 'documents', :action => 'new', :project_id => '567' }
+      )
+    assert_routing(
+        { :method => 'get', :path => "/documents/22" },
+        { :controller => 'documents', :action => 'show', :id => '22' }
+      )
+    assert_routing(
+        { :method => 'get', :path => "/documents/22/edit" },
+        { :controller => 'documents', :action => 'edit', :id => '22' }
+      )
+    assert_routing(
+        { :method => 'post', :path => "/projects/567/documents" },
+        { :controller => 'documents', :action => 'create', :project_id => '567' }
+      )
+    assert_routing(
+        { :method => 'put', :path => "/documents/22" },
+        { :controller => 'documents', :action => 'update', :id => '22' }
+      )
+    assert_routing(
+        { :method => 'delete', :path => "/documents/22" },
+        { :controller => 'documents', :action => 'destroy', :id => '22' }
+      )
+    assert_routing(
+        { :method => 'post', :path => "/documents/22/add_attachment" },
+        { :controller => 'documents', :action => 'add_attachment', :id => '22' }
+      )
   end
 
   context "roles" do