class Cucumber::Core::Test::HookStep

Public Class Methods

new(id, text, location, action) click to toggle source
Calls superclass method Cucumber::Core::Test::Step.new
# File lib/cucumber/core/test/step.rb, line 59
def initialize(id, text, location, action)
  super(id, text, location, Test::EmptyMultilineArgument.new, action)
end

Public Instance Methods

hook?() click to toggle source
# File lib/cucumber/core/test/step.rb, line 63
def hook?
  true
end