aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-06-14 10:56:59 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-06-14 10:56:59 -0700
commit10da140157ea958cfd1afc92228c632921c64c3c (patch)
tree7e99ec8e07f09c70fee39fe81bbb7abda15fe941 /actionpack
parentff859f542cde9108b66c14c810a7e3c190f3f12f (diff)
downloadrails-10da140157ea958cfd1afc92228c632921c64c3c.tar.gz
rails-10da140157ea958cfd1afc92228c632921c64c3c.tar.bz2
rails-10da140157ea958cfd1afc92228c632921c64c3c.zip
Revert "AV::TestCase does not need to be loaded when eagerly loading the"
This reverts commit f5e7cb84cd377feb1b60c5356ce02123e9c94380.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb
index 899b40c66a..3823f87027 100644
--- a/actionpack/lib/action_view.rb
+++ b/actionpack/lib/action_view.rb
@@ -36,6 +36,7 @@ module ActionView
autoload :LookupContext
autoload :PathSet
autoload :Template
+ autoload :TestCase
autoload_under "renderer" do
autoload :Renderer
@@ -72,8 +73,6 @@ module ActionView
end
end
- autoload :TestCase
-
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
end