Class: Cucumber::NoStepMatch

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(step, name) ⇒ NoStepMatch

Returns a new instance of NoStepMatch.



39
40
41
42
# File 'lib/cucumber/step_match.rb', line 39

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



37
38
39
# File 'lib/cucumber/step_match.rb', line 37

def name
  @name
end

#step_definitionObject (readonly)

Returns the value of attribute step_definition.



37
38
39
# File 'lib/cucumber/step_match.rb', line 37

def step_definition
  @step_definition
end

Instance Method Details

#backtrace_lineObject



53
54
55
# File 'lib/cucumber/step_match.rb', line 53

def backtrace_line
  @step.backtrace_line
end

#file_colon_lineObject



48
49
50
51
# File 'lib/cucumber/step_match.rb', line 48

def file_colon_line
  raise "No file:line for #{@step}" unless @step.file_colon_line
  @step.file_colon_line
end

#format_args(format) ⇒ Object



44
45
46
# File 'lib/cucumber/step_match.rb', line 44

def format_args(format)
  @name
end

#text_lengthObject



57
58
59
# File 'lib/cucumber/step_match.rb', line 57

def text_length
  @step.text_length
end