Class: Cucumber::Core::Test::UndefinedAction

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/test/action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source_location) ⇒ UndefinedAction

Returns a new instance of UndefinedAction.



64
65
66
# File 'lib/cucumber/core/test/action.rb', line 64

def initialize(source_location)
  @location = source_location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



62
63
64
# File 'lib/cucumber/core/test/action.rb', line 62

def location
  @location
end

Instance Method Details

#executeObject



68
69
70
# File 'lib/cucumber/core/test/action.rb', line 68

def execute(*)
  undefined
end

#skipObject



72
73
74
# File 'lib/cucumber/core/test/action.rb', line 72

def skip(*)
  undefined
end