aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-05-22 13:51:01 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-05-22 13:51:01 -0300
commit73c6ca87a36336c360db66a751c66e11f7886788 (patch)
treea87dabcd6dc54e231fcc41e88b66d7f3effdda3d /activesupport/lib/active_support/test_case.rb
parentc86cdd1130b148fa7b0b794994cee13b751c667c (diff)
downloadrails-73c6ca87a36336c360db66a751c66e11f7886788.tar.gz
rails-73c6ca87a36336c360db66a751c66e11f7886788.tar.bz2
rails-73c6ca87a36336c360db66a751c66e11f7886788.zip
Require only minitest.
minitest/autorun required minitest/spec and we are avoiding to require it.
Diffstat (limited to 'activesupport/lib/active_support/test_case.rb')
-rw-r--r--activesupport/lib/active_support/test_case.rb2
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 12144e6682..b124ae184d 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -1,5 +1,5 @@
gem 'minitest' # make sure we get the gem, not stdlib
-require 'minitest/autorun'
+require 'minitest'
require 'active_support/testing/tagged_logging'
require 'active_support/testing/setup_and_teardown'
require 'active_support/testing/assertions'