aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-12-08 19:19:48 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2008-12-08 19:19:48 -0800
commit9adcf951ea7e5342c913dda40594cbb382995e3b (patch)
tree5ffed498f65948c2378c03c73579b48a756dc9da /actionpack/test/controller
parent39de112e7b902176434a1d0ebc1d6741247e50de (diff)
downloadrails-9adcf951ea7e5342c913dda40594cbb382995e3b.tar.gz
rails-9adcf951ea7e5342c913dda40594cbb382995e3b.tar.bz2
rails-9adcf951ea7e5342c913dda40594cbb382995e3b.zip
Fix failing test introduced by optional-format routes
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/caching_test.rb1
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