X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/58d889436fc05c1a3c32cf6aa28cc751badf99ad..815c98c977831a9a7f84dca49186f5eea7b4a283:/test/functional/site_controller_test.rb?ds=sidebyside diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb index caef3481b..55dff2d96 100644 --- a/test/functional/site_controller_test.rb +++ b/test/functional/site_controller_test.rb @@ -10,6 +10,10 @@ class SiteControllerTest < ActionController::TestCase { :path => "/", :method => :get }, { :controller => "site", :action => "index" } ) + assert_routing( + { :path => "/", :method => :post }, + { :controller => "site", :action => "index" } + ) assert_recognizes( { :controller => "site", :action => "index" }, { :path => "/index.html", :method => :get } @@ -43,13 +47,17 @@ class SiteControllerTest < ActionController::TestCase { :controller => "site", :action => "offline" } ) assert_routing( - { :path => "/key", :method => :post }, + { :path => "/key", :method => :get }, { :controller => "site", :action => "key" } ) assert_routing( { :path => "/go/shortcode", :method => :get }, { :controller => "site", :action => "permalink", :code => "shortcode" } ) + assert_routing( + { :path => "/preview/formatname", :method => :get }, + { :controller => "site", :action => "preview", :format => "formatname" } + ) end ## Lets check that we can get all the pages without any errors