Module: ParallelCucumber::Cli

Defined in:
lib/parallel_cucumber/cli.rb

Constant Summary collapse

DEFAULTS =
{
  env_variables: {},
  thread_delay: 0,
  cucumber_options: '',
  n: 1
}.freeze

Class Method Summary collapse

Class Method Details

.run(argv) ⇒ Object



14
15
16
17
18
# File 'lib/parallel_cucumber/cli.rb', line 14

def run(argv)
  options = parse_options!(argv)

  ParallelCucumber.run_tests_in_parallel(options)
end