aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2010-01-04 15:59:23 -0600
committerJoshua Peek <josh@joshpeek.com>2010-01-04 16:22:46 -0600
commitcf83a6f16b730f5536d4e11af894a04b24723212 (patch)
tree02d6f483be1ab48cd28da7dbebcff7039d9f4121 /actionpack/lib/action_controller.rb
parent45462c5e41a77e600878f7b8b2e41babeef8fe8f (diff)
downloadrails-cf83a6f16b730f5536d4e11af894a04b24723212.tar.gz
rails-cf83a6f16b730f5536d4e11af894a04b24723212.tar.bz2
rails-cf83a6f16b730f5536d4e11af894a04b24723212.zip
Autoload AC and AV test case classes
Diffstat (limited to 'actionpack/lib/action_controller.rb')
-rw-r--r--actionpack/lib/action_controller.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb
index d66fc3fcc9..e6cd055a59 100644
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -27,22 +27,24 @@ module ActionController
autoload :MimeResponds
autoload :RackDelegation
autoload :Redirecting
- autoload :Rendering
autoload :Renderers
+ autoload :Rendering
autoload :RequestForgeryProtection
autoload :Rescue
autoload :Responder
autoload :SessionManagement
autoload :Streaming
+ autoload :Testing
autoload :UrlFor
autoload :Verification
end
autoload :Dispatcher, 'action_controller/dispatch/dispatcher'
- autoload :PerformanceTest, 'action_controller/deprecated/performance_test'
- autoload :Routing, 'action_controller/deprecated'
autoload :Integration, 'action_controller/deprecated/integration_test'
autoload :IntegrationTest, 'action_controller/deprecated/integration_test'
+ autoload :PerformanceTest, 'action_controller/deprecated/performance_test'
+ autoload :Routing, 'action_controller/deprecated'
+ autoload :TestCase, 'action_controller/test_case'
eager_autoload do
autoload :RecordIdentifier