Class: CucumberRunner

Inherits:
Object
  • Object
show all
Defined in:
lib/recumber/cucumber_runner.rb

Class Method Summary collapse

Class Method Details

.rerun_features(feature_paths, options) ⇒ Object



3
4
5
6
7
8
9
10
# File 'lib/recumber/cucumber_runner.rb', line 3

def self.rerun_features(feature_paths, options)
  command = get_command_from_options(options)
  command << " " << feature_paths.join(' ')

  puts "Recumber command: #{command}"

  system(command)
end