diff --git a/test/integration/routing/wikis_test.rb b/test/integration/routing/wikis_test.rb index 2b0899d..c377783 100644 --- a/test/integration/routing/wikis_test.rb +++ b/test/integration/routing/wikis_test.rb @@ -19,17 +19,15 @@ require File.expand_path('../../../test_helper', __FILE__) class RoutingWikisTest < ActionController::IntegrationTest def test_wikis_plural_admin_setup - assert_routing( - { :method => 'get', :path => "/projects/ladida/wiki/destroy" }, - { :controller => 'wikis', :action => 'destroy', :id => 'ladida' } - ) + ["get", "post"].each do |method| + assert_routing( + { :method => method, :path => "/projects/ladida/wiki/destroy" }, + { :controller => 'wikis', :action => 'destroy', :id => 'ladida' } + ) + end assert_routing( { :method => 'post', :path => "/projects/ladida/wiki" }, { :controller => 'wikis', :action => 'edit', :id => 'ladida' } ) - assert_routing( - { :method => 'post', :path => "/projects/ladida/wiki/destroy" }, - { :controller => 'wikis', :action => 'destroy', :id => 'ladida' } - ) end end