This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
parallelize_me!()
public
Call this at the top of your tests when you want to run your tests in parallel. In
doing so, you’re admitting that you rule and your tests are awesome.
# File lib/minitest/unit.rb, line 1358
def self.parallelize_me!
require "minitest/parallel_each"
class << self
undef_method :test_order if method_defined? :test_order
define_method :test_order do :parallel end
end
end