diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-12-08 19:19:48 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-12-08 19:19:48 -0800 |
commit | 9adcf951ea7e5342c913dda40594cbb382995e3b (patch) | |
tree | 5ffed498f65948c2378c03c73579b48a756dc9da | |
parent | 39de112e7b902176434a1d0ebc1d6741247e50de (diff) | |
download | rails-9adcf951ea7e5342c913dda40594cbb382995e3b.tar.gz rails-9adcf951ea7e5342c913dda40594cbb382995e3b.tar.bz2 rails-9adcf951ea7e5342c913dda40594cbb382995e3b.zip |
Fix failing test introduced by optional-format routes
-rw-r--r-- | actionpack/test/controller/caching_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb index 7e7f488df6..ddf140ac3a 100644 --- a/actionpack/test/controller/caching_test.rb +++ b/actionpack/test/controller/caching_test.rb @@ -48,6 +48,7 @@ class PageCachingTest < ActionController::TestCase ActionController::Routing::Routes.draw do |map| map.main '', :controller => 'posts' + map.formatted_posts 'posts.:format', :controller => 'posts' map.resources :posts map.connect ':controller/:action/:id' end |