Method: Minitest::Test.parallelize_me!
- Defined in:
- lib/minitest/test.rb
.parallelize_me! ⇒ Object
Call this at the top of your tests (inside the Minitest::Test
subclass or describe
block) when you want to run your tests in parallel. In doing so, you’re admitting that you rule and your tests are awesome.
60 61 62 63 |
# File 'lib/minitest/test.rb', line 60 def self.parallelize_me! include Minitest::Parallel::Test extend Minitest::Parallel::Test::ClassMethods end |