Class: Cucumber::NoStepMatch

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(step, name) ⇒ NoStepMatch

Returns a new instance of NoStepMatch.



107
108
109
110
# File 'lib/cucumber/step_match.rb', line 107

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



105
106
107
# File 'lib/cucumber/step_match.rb', line 105

def name
  @name
end

#step_definitionObject (readonly)

Returns the value of attribute step_definition.



105
106
107
# File 'lib/cucumber/step_match.rb', line 105

def step_definition
  @step_definition
end

Instance Method Details

#activate(test_step) ⇒ Object



137
138
139
140
# File 'lib/cucumber/step_match.rb', line 137

def activate(test_step)
  # noop
  test_step
end

#backtrace_lineObject



125
126
127
# File 'lib/cucumber/step_match.rb', line 125

def backtrace_line
  @step.backtrace_line
end

#file_colon_lineObject



121
122
123
# File 'lib/cucumber/step_match.rb', line 121

def file_colon_line
  location.to_s
end

#format_args(*_args) ⇒ Object



112
113
114
# File 'lib/cucumber/step_match.rb', line 112

def format_args(*_args)
  @name
end

#locationObject



116
117
118
119
# File 'lib/cucumber/step_match.rb', line 116

def location
  raise "No location for #{@step}" unless @step.location
  @step.location
end

#step_argumentsObject



133
134
135
# File 'lib/cucumber/step_match.rb', line 133

def step_arguments
  []
end

#text_lengthObject



129
130
131
# File 'lib/cucumber/step_match.rb', line 129

def text_length
  @step.text.length
end