diff options
author | Andy Lindeman <alindeman@gmail.com> | 2012-09-25 18:04:09 -0400 |
---|---|---|
committer | Andy Lindeman <alindeman@gmail.com> | 2012-09-26 23:21:26 -0400 |
commit | 299e05706efe323b9adedefe1178283a4585a91b (patch) | |
tree | bc0b97d4defe69480b71ee7ed02de26e70cc7059 | |
parent | abfcdc65d96268b889a81b5fe55e4ce3b8cd5b7f (diff) | |
download | rails-299e05706efe323b9adedefe1178283a4585a91b.tar.gz rails-299e05706efe323b9adedefe1178283a4585a91b.tar.bz2 rails-299e05706efe323b9adedefe1178283a4585a91b.zip |
Also includes ConstantLookup dependency for controller and mailer tests
-rw-r--r-- | actionmailer/lib/action_mailer/test_case.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionmailer/lib/action_mailer/test_case.rb b/actionmailer/lib/action_mailer/test_case.rb index e60dda9694..80f323873d 100644 --- a/actionmailer/lib/action_mailer/test_case.rb +++ b/actionmailer/lib/action_mailer/test_case.rb @@ -20,6 +20,7 @@ module ActionMailer module Behavior extend ActiveSupport::Concern + include ActiveSupport::Testing::ConstantLookup include TestHelper included do diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index a28033fb32..0caeef3192 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -356,6 +356,7 @@ module ActionController module Behavior extend ActiveSupport::Concern include ActionDispatch::TestProcess + include ActiveSupport::Testing::ConstantLookup attr_reader :response, :request |