From: Toshi MARUYAMA Date: Sun, 25 Dec 2011 12:48:29 +0000 (+0000) Subject: test: route: simplify "my" tests X-Git-Tag: 1.4.0~921 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=27dee8eff4505e1daf6c88958c5b918eaaa6f9f2;p=redmine.git test: route: simplify "my" tests git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8366 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/integration/routing/my_test.rb b/test/integration/routing/my_test.rb index b67677a7b..5537a8b72 100644 --- a/test/integration/routing/my_test.rb +++ b/test/integration/routing/my_test.rb @@ -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' }