]> source.dussan.org Git - redmine.git/commitdiff
test: route: simplify "my" tests
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 25 Dec 2011 12:48:29 +0000 (12:48 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 25 Dec 2011 12:48:29 +0000 (12:48 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8366 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/routing/my_test.rb

index b67677a7b9aff6c1bec2d95287bc85d04b207358..5537a8b7238914bf75097ead0a3a2dd31cf1bc71 100644 (file)
@@ -19,14 +19,12 @@ require File.expand_path('../../../test_helper', __FILE__)
 
 class RoutingMyTest < ActionController::IntegrationTest
   def test_my
-    assert_routing(
-        { :method => 'get', :path => "/my/account" },
-        { :controller => 'my', :action => 'account' }
-      )
-    assert_routing(
-        { :method => 'post', :path => "/my/account" },
-        { :controller => 'my', :action => 'account' }
-      )
+    ["get", "post"].each do |method|
+      assert_routing(
+          { :method => method, :path => "/my/account" },
+          { :controller => 'my', :action => 'account' }
+        )
+    end
     assert_routing(
         { :method => 'get', :path => "/my/page" },
         { :controller => 'my', :action => 'page' }
@@ -43,14 +41,12 @@ class RoutingMyTest < ActionController::IntegrationTest
         { :method => 'post', :path => "/my/reset_api_key" },
         { :controller => 'my', :action => 'reset_api_key' }
       )
-    assert_routing(
-        { :method => 'get', :path => "/my/password" },
-        { :controller => 'my', :action => 'password' }
-      )
-    assert_routing(
-        { :method => 'post', :path => "/my/password" },
-        { :controller => 'my', :action => 'password' }
-      )
+    ["get", "post"].each do |method|
+      assert_routing(
+          { :method => method, :path => "/my/password" },
+          { :controller => 'my', :action => 'password' }
+        )
+    end
     assert_routing(
         { :method => 'get', :path => "/my/page_layout" },
         { :controller => 'my', :action => 'page_layout' }