Class: Cucumber::NoStepMatch
Overview
:nodoc:
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#step_definition ⇒ Object
readonly
Returns the value of attribute step_definition.
Instance Method Summary collapse
- #backtrace_line ⇒ Object
- #file_colon_line ⇒ Object
- #format_args(*args) ⇒ Object
-
#initialize(step, name) ⇒ NoStepMatch
constructor
A new instance of NoStepMatch.
- #step_arguments ⇒ Object
- #text_length ⇒ Object
Constructor Details
#initialize(step, name) ⇒ NoStepMatch
Returns a new instance of NoStepMatch.
88 89 90 91 |
# File 'lib/cucumber/step_match.rb', line 88 def initialize(step, name) @step = step @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
86 87 88 |
# File 'lib/cucumber/step_match.rb', line 86 def name @name end |
#step_definition ⇒ Object (readonly)
Returns the value of attribute step_definition.
86 87 88 |
# File 'lib/cucumber/step_match.rb', line 86 def step_definition @step_definition end |
Instance Method Details
#backtrace_line ⇒ Object
102 103 104 |
# File 'lib/cucumber/step_match.rb', line 102 def backtrace_line @step.backtrace_line end |
#file_colon_line ⇒ Object
97 98 99 100 |
# File 'lib/cucumber/step_match.rb', line 97 def file_colon_line raise "No file:line for #{@step}" unless @step.file_colon_line @step.file_colon_line end |
#format_args(*args) ⇒ Object
93 94 95 |
# File 'lib/cucumber/step_match.rb', line 93 def format_args(*args) @name end |
#step_arguments ⇒ Object
110 111 112 |
# File 'lib/cucumber/step_match.rb', line 110 def step_arguments [] end |
#text_length ⇒ Object
106 107 108 |
# File 'lib/cucumber/step_match.rb', line 106 def text_length @step.text_length end |