class Cucumber::Ast::Scenario::EmptyBackground

Public Instance Methods

failed?() click to toggle source
# File lib/cucumber/ast/scenario.rb, line 13
def failed?
  false
end
feature_elements() click to toggle source
# File lib/cucumber/ast/scenario.rb, line 17
def feature_elements
  []
end
init() click to toggle source
# File lib/cucumber/ast/scenario.rb, line 25
def init
end
step_collection(step_invocations) click to toggle source
# File lib/cucumber/ast/scenario.rb, line 21
def step_collection(step_invocations)
  StepCollection.new(step_invocations)
end