]> git.openstreetmap.org Git - rails.git/blobdiff - test/functional/site_controller_test.rb
Beef up tests for trace#list to check tag restrictions
[rails.git] / test / functional / site_controller_test.rb
index 7495e30e0fa8aeabbc12f2a64466f99a5d584f52..47bc278066f2aa0a195467846977628e341ec6c2 100644 (file)
@@ -58,6 +58,10 @@ class SiteControllerTest < ActionController::TestCase
       { :path => "/preview/formatname", :method => :get },
       { :controller => "site", :action => "preview", :format => "formatname" }
     )
+    assert_routing(
+      { :path => "/id", :method => :get },
+      { :controller => "site", :action => "id" }
+    )
   end
 
   ## Lets check that we can get all the pages without any errors  
@@ -86,7 +90,6 @@ class SiteControllerTest < ActionController::TestCase
   
   def assert_site_partials(count = 1)
     assert_template :partial => '_search', :count => count
-    assert_template :partial => '_key', :count => count
     assert_template :partial => '_sidebar', :count => count
   end