diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-06 15:18:12 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-06 15:50:47 -0800 |
commit | b15d2c0708b78ee1c8ad6958022214bda18bdbae (patch) | |
tree | 514d2005aa2c25514b17c40882a5c416025e152f /activesupport/lib | |
parent | a58fb105e73837dd9b20a4f2f78ec45d49db4442 (diff) | |
download | rails-b15d2c0708b78ee1c8ad6958022214bda18bdbae.tar.gz rails-b15d2c0708b78ee1c8ad6958022214bda18bdbae.tar.bz2 rails-b15d2c0708b78ee1c8ad6958022214bda18bdbae.zip |
require minitest rather than test/unit
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index bfe73de516..8d2e4ce508 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -1,4 +1,4 @@ -require 'minitest/unit' +require 'minitest/spec' require 'active_support/testing/setup_and_teardown' require 'active_support/testing/assertions' require 'active_support/testing/deprecation' |