diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-12-18 20:59:40 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-12-18 20:59:40 +0000 |
commit | d68f559640fcfa41174f544c38c9ac4aff216a26 (patch) | |
tree | 09b19d70d42d6d15ef1ea555318c9315090f9880 /activesupport | |
parent | 507445862eba45aacf46079f113f5ab1dea0fdb2 (diff) | |
download | rails-d68f559640fcfa41174f544c38c9ac4aff216a26.tar.gz rails-d68f559640fcfa41174f544c38c9ac4aff216a26.tar.bz2 rails-d68f559640fcfa41174f544c38c9ac4aff216a26.zip |
Don't require test/unit since it tries to turn everything into a test run.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5740 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/deprecation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb index 247aa4e1ad..76db7b5a56 100644 --- a/activesupport/lib/active_support/deprecation.rb +++ b/activesupport/lib/active_support/deprecation.rb @@ -172,7 +172,7 @@ class Module include ActiveSupport::Deprecation::ClassMethods end -require 'test/unit' +require 'test/unit/error' module Test module Unit |