diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-14 09:42:24 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-14 09:42:24 -0700 |
commit | f5e7cb84cd377feb1b60c5356ce02123e9c94380 (patch) | |
tree | ac4afda5731f22d9b429c2f459e1c183897747f9 /actionpack | |
parent | b9b9e39bab699ad62258c968ed7f80371dbfca83 (diff) | |
download | rails-f5e7cb84cd377feb1b60c5356ce02123e9c94380.tar.gz rails-f5e7cb84cd377feb1b60c5356ce02123e9c94380.tar.bz2 rails-f5e7cb84cd377feb1b60c5356ce02123e9c94380.zip |
AV::TestCase does not need to be loaded when eagerly loading the
framework
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb index 3823f87027..899b40c66a 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -36,7 +36,6 @@ module ActionView autoload :LookupContext autoload :PathSet autoload :Template - autoload :TestCase autoload_under "renderer" do autoload :Renderer @@ -73,6 +72,8 @@ module ActionView end end + autoload :TestCase + ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*' end |