aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-06-15 11:36:21 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-06-15 11:36:32 -0700
commit8b35a239fb2dd9bfeed7f99f10e826a82dfb59da (patch)
tree9c284cbb2981200926bfea7c2320e593a988061b /actionpack
parent65df7b376a1566d3d2fc5f11babbcda34ffe5a22 (diff)
downloadrails-8b35a239fb2dd9bfeed7f99f10e826a82dfb59da.tar.gz
rails-8b35a239fb2dd9bfeed7f99f10e826a82dfb59da.tar.bz2
rails-8b35a239fb2dd9bfeed7f99f10e826a82dfb59da.zip
TestCase does not need to be loaded when loading the framework
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb
index 3823f87027..03dfa110e3 100644
--- a/actionpack/lib/action_view.rb
+++ b/actionpack/lib/action_view.rb
@@ -36,7 +36,7 @@ module ActionView
autoload :LookupContext
autoload :PathSet
autoload :Template
- autoload :TestCase
+
autoload_under "renderer" do
autoload :Renderer
@@ -73,6 +73,8 @@ module ActionView
end
end
+ autoload :TestCase
+
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
end