diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/routing/sys_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/routing/sys_test.rb b/test/integration/routing/sys_test.rb index 1f69ddcc4..6b9afe63b 100644 --- a/test/integration/routing/sys_test.rb +++ b/test/integration/routing/sys_test.rb @@ -31,5 +31,9 @@ class RoutingSysTest < ActionController::IntegrationTest { :method => 'get', :path => "/sys/fetch_changesets" }, { :controller => 'sys', :action => 'fetch_changesets' } ) + assert_routing( + { :method => 'post', :path => "/sys/fetch_changesets" }, + { :controller => 'sys', :action => 'fetch_changesets' } + ) end end |