X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/21855aa355ed66bea0ae21acb3d675aeaccc963b..8ec415b060c4321fad3fa42f3038148aa94c9b90:/test/functional/site_controller_test.rb diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb index 3f9e2a145..67d020b74 100644 --- a/test/functional/site_controller_test.rb +++ b/test/functional/site_controller_test.rb @@ -36,10 +36,10 @@ class SiteControllerTest < ActionController::TestCase ) assert_routing( { :path => "/export", :method => :get }, - { :controller => "site", :action => "export" } + { :controller => "site", :action => "index", :export => true } ) assert_recognizes( - { :controller => "site", :action => "export", :format => "html" }, + { :controller => "site", :action => "index", :export => true, :format => "html" }, { :path => "/export.html", :method => :get } ) assert_routing( @@ -47,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 @@ -72,14 +76,6 @@ class SiteControllerTest < ActionController::TestCase assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit" end - # Get the export page - def test_export - get :export - assert_response :success - assert_template 'index' - assert_site_partials - end - # Offline page def test_offline get :offline