diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-06-15 11:36:21 -0700 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2016-12-02 16:49:42 +0000 |
commit | f8b053734e77519f8f9df724c7df27c938166b8f (patch) | |
tree | 3d7a4f79080378888e79da53e7ef6ad0d07383a4 /actionpack | |
parent | 8d445ca5e35508bd6bdd265a10075d1163b4ba81 (diff) | |
download | rails-f8b053734e77519f8f9df724c7df27c938166b8f.tar.gz rails-f8b053734e77519f8f9df724c7df27c938166b8f.tar.bz2 rails-f8b053734e77519f8f9df724c7df27c938166b8f.zip |
TestCase does not need to be loaded when loading the framework
(cherry picked from commit 8b35a239fb2dd9bfeed7f99f10e826a82dfb59da)
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 c24109a547..56da30997f 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -38,7 +38,6 @@ module ActionView autoload :LookupContext autoload :PathSet autoload :Template - autoload :TestCase autoload_under "renderer" do autoload :Renderer @@ -75,6 +74,8 @@ module ActionView end end + autoload :TestCase + ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*' end |