Class: Kymera::Cucumber::DryRunFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/kymera/cucumber/dry_run_formatter.rb

Instance Method Summary collapse

Constructor Details

#initialize(step_mother, io, options) ⇒ DryRunFormatter

Returns a new instance of DryRunFormatter.



5
6
7
# File 'lib/kymera/cucumber/dry_run_formatter.rb', line 5

def initialize(step_mother, io, options)
  @io = io
end

Instance Method Details

#scenario_name(*args) ⇒ Object



9
10
11
12
13
14
15
16
# File 'lib/kymera/cucumber/dry_run_formatter.rb', line 9

def scenario_name(*args)
  #if args[0].include?("Outline")
  #  @scenario_name = args[2].split(':')[0]
  #else
  $stdout << args[2]
  $stdout << "\n"
  #end
end