Module: RSpec::Multicore::RunnerPatch
- Defined in:
- lib/rspec/multicore/runner_patch.rb
Overview
The only RSpec method override used by rspec-multicore.
Instance Method Summary collapse
Instance Method Details
#run_specs(example_groups) ⇒ Object
25 26 27 28 29 |
# File 'lib/rspec/multicore/runner_patch.rb', line 25 def run_specs(example_groups) return super unless parallelize?(example_groups) super(ParallelGroups.new(example_groups, @configuration)) end |