aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/autorun.rb
blob: 898ef209da7f057dea533f6dce10215d736f958d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
gem "minitest"

require "minitest"

if Minitest.respond_to?(:run_with_rails_extension)
  unless Minitest.run_with_rails_extension
    Minitest.run_with_autorun = true
    Minitest.autorun
  end
else
  Minitest.autorun
end