aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-11-14 09:36:35 +0000
committerMichael Koziarski <michael@koziarski.com>2007-11-14 09:36:35 +0000
commit5ce6d7453146ddb5bb273371fa84c52f442ac705 (patch)
tree3babd97964a2cee2f944e29cc6176d0b22903eb2 /actionpack
parent7106dca97779677070b134ae3c87e88b8a8b2c9d (diff)
downloadrails-5ce6d7453146ddb5bb273371fa84c52f442ac705.tar.gz
rails-5ce6d7453146ddb5bb273371fa84c52f442ac705.tar.bz2
rails-5ce6d7453146ddb5bb273371fa84c52f442ac705.zip
Fix Tests broken in [8134]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8135 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/view_paths_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/test/controller/view_paths_test.rb b/actionpack/test/controller/view_paths_test.rb
index 5a6edf1db0..a29247ad44 100644
--- a/actionpack/test/controller/view_paths_test.rb
+++ b/actionpack/test/controller/view_paths_test.rb
@@ -27,6 +27,7 @@ class ViewLoadPathsTest < Test::Unit::TestCase
def setup
TestController.view_paths = nil
+ ActionView::Base.cache_template_extensions = false
@controller = TestController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@@ -39,6 +40,7 @@ class ViewLoadPathsTest < Test::Unit::TestCase
def teardown
ActiveSupport::Deprecation.behavior = @old_behavior
+ ActionView::Base.cache_template_extensions = true
end
def test_template_load_path_was_set_correctly