]> git.openstreetmap.org Git - rails.git/blobdiff - test/functional/site_controller_test.rb
Use a param to trigger export rather than a separate action
[rails.git] / test / functional / site_controller_test.rb
index 86445e551a4e0480e3feb0e5a8a41ed9d0949ba3..67d020b74443d0adceecd485b81a3a9b3af2ca30 100644 (file)
@@ -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,7 +47,7 @@ class SiteControllerTest < ActionController::TestCase
       { :controller => "site", :action => "offline" }
     )
     assert_routing(
-      { :path => "/key", :method => :post },
+      { :path => "/key", :method => :get },
       { :controller => "site", :action => "key" }
     )
     assert_routing(
@@ -76,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