Class: Cucumber::Core::Test::Action::Undefined
- Inherits:
-
Object
- Object
- Cucumber::Core::Test::Action::Undefined
- Defined in:
- lib/cucumber/core/test/action/undefined.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(source_location) ⇒ Undefined
constructor
A new instance of Undefined.
- #skip ⇒ Object
Constructor Details
#initialize(source_location) ⇒ Undefined
Returns a new instance of Undefined.
12 13 14 |
# File 'lib/cucumber/core/test/action/undefined.rb', line 12 def initialize(source_location) @location = source_location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
10 11 12 |
# File 'lib/cucumber/core/test/action/undefined.rb', line 10 def location @location end |
Instance Method Details
#execute ⇒ Object
16 17 18 |
# File 'lib/cucumber/core/test/action/undefined.rb', line 16 def execute(*) undefined end |
#skip ⇒ Object
20 21 22 |
# File 'lib/cucumber/core/test/action/undefined.rb', line 20 def skip(*) undefined end |