summaryrefslogtreecommitdiff
path: root/lib/minitest/autorun.rb
blob: 6317c220bc7527e6f25c1e549fac37c67f9d709e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
######################################################################
# This file is imported from the minitest project.
# DO NOT make modifications in this repo. They _will_ be reverted!
# File a patch instead and assign it to Ryan Davis.
######################################################################

begin
  gem 'minitest'
rescue Gem::LoadError
  # do nothing
end

require 'minitest/unit'
require 'minitest/spec'
require 'minitest/mock'

MiniTest::Unit.autorun