Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
_run_suites(suites, type)
public
Runs all the suites for a given type. Runs suites
declaring a test_order of :parallel in parallel, and everything
else serial.
# File lib/minitest/parallel_each.rb, line 73
def _run_suites suites, type
parallel, serial = suites.partition { |s| s.test_order == :parallel }
ParallelEach.new(parallel).map { |suite| _run_suite suite, type } +
serial.map { |suite| _run_suite suite, type }
end