From: Toshi MARUYAMA Date: Mon, 26 Dec 2011 05:54:12 +0000 (+0000) Subject: test: route: simplify roles tests X-Git-Tag: 1.4.0~916 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a84baf92e7516d3c904c08e932e1626c632fc7dd;p=redmine.git test: route: simplify roles tests git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8371 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/integration/routing/roles_test.rb b/test/integration/routing/roles_test.rb index cd966636c..bdaa56f8e 100644 --- a/test/integration/routing/roles_test.rb +++ b/test/integration/routing/roles_test.rb @@ -43,13 +43,11 @@ class RoutingRolesTest < ActionController::IntegrationTest { :method => 'delete', :path => "/roles/2" }, { :controller => 'roles', :action => 'destroy', :id => '2' } ) - assert_routing( - { :method => 'get', :path => "/roles/permissions" }, - { :controller => 'roles', :action => 'permissions' } - ) - assert_routing( - { :method => 'post', :path => "/roles/permissions" }, - { :controller => 'roles', :action => 'permissions' } - ) + ["get", "post"].each do |method| + assert_routing( + { :method => method, :path => "/roles/permissions" }, + { :controller => 'roles', :action => 'permissions' } + ) + end end end