summaryrefslogtreecommitdiff
path: root/test/lib/minitest/hell.rb
blob: 3a156b3d95c8664df1e9ab1f6c41ea8ec83c4c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# encoding: utf-8

require "minitest/parallel_each"

# :stopdoc:
class Minitest::Unit::TestCase
  class << self
    alias :old_test_order :test_order

    def test_order
      :parallel
    end
  end
end
# :startdoc: