aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/caching_test.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-08-09 22:38:50 -0500
committerJoshua Peek <josh@joshpeek.com>2009-08-09 22:53:16 -0500
commit734e903af5913342c65d4c294e45f9095fa89986 (patch)
tree1348979ed6b3bcd3b41da4f75dd742174fec9af2 /actionpack/test/controller/caching_test.rb
parent82dd725fc195eb52eea9cbde9530ab9dff122e32 (diff)
downloadrails-734e903af5913342c65d4c294e45f9095fa89986.tar.gz
rails-734e903af5913342c65d4c294e45f9095fa89986.tar.bz2
rails-734e903af5913342c65d4c294e45f9095fa89986.zip
Deprecate router generation "best match" sorting
Diffstat (limited to 'actionpack/test/controller/caching_test.rb')
-rw-r--r--actionpack/test/controller/caching_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb
index 68529cc8f7..346fa09414 100644
--- a/actionpack/test/controller/caching_test.rb
+++ b/actionpack/test/controller/caching_test.rb
@@ -51,7 +51,7 @@ class PageCachingTest < ActionController::TestCase
ActionController::Routing::Routes.clear!
ActionController::Routing::Routes.draw do |map|
- map.main '', :controller => 'posts'
+ map.main '', :controller => 'posts', :format => nil
map.formatted_posts 'posts.:format', :controller => 'posts'
map.resources :posts
map.connect ':controller/:action/:id'