Class: Cucumber::Formatter::Console::SnippetData

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/formatter/console.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(actual_keyword, step) ⇒ SnippetData

Returns a new instance of SnippetData.



245
246
247
# File 'lib/cucumber/formatter/console.rb', line 245

def initialize(actual_keyword, step)
  @actual_keyword, @step = actual_keyword, step
end

Instance Attribute Details

#actual_keywordObject (readonly)

Returns the value of attribute actual_keyword.



244
245
246
# File 'lib/cucumber/formatter/console.rb', line 244

def actual_keyword
  @actual_keyword
end

#stepObject (readonly)

Returns the value of attribute step.



244
245
246
# File 'lib/cucumber/formatter/console.rb', line 244

def step
  @step
end