diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-07-08 10:50:21 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-07-08 10:50:21 -0700 |
commit | 3270156049186d84d4ad55f949b88480710a5c53 (patch) | |
tree | bfc2d0fc3aceb19118cbe6e4ceb4c8a1bedbc17e | |
parent | 367b0c6e5e0ace0cb556357793264b8f80143ac2 (diff) | |
download | rails-3270156049186d84d4ad55f949b88480710a5c53.tar.gz rails-3270156049186d84d4ad55f949b88480710a5c53.tar.bz2 rails-3270156049186d84d4ad55f949b88480710a5c53.zip |
minitest is a gem dep, so remove this conditional
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index a6f3b43792..307c53eac3 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -13,12 +13,6 @@ module ActiveSupport include ActiveSupport::Testing::MochaModule - if MiniTest::Unit::VERSION < '2.6.1' - class << self - alias :name :to_s - end - end - # Use AS::TestCase for the base class when describing a model register_spec_type(self) do |desc| desc < ActiveRecord::Model |