Class: Cucumber::Ast::Scenario::EmptyBackground

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/ast/scenario.rb

Instance Method Summary collapse

Instance Method Details

#failed?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/cucumber/ast/scenario.rb', line 11

def failed?
  false
end

#feature_elementsObject



15
16
17
# File 'lib/cucumber/ast/scenario.rb', line 15

def feature_elements
  []
end

#step_collection(step_invocations) ⇒ Object



19
20
21
# File 'lib/cucumber/ast/scenario.rb', line 19

def step_collection(step_invocations)
  StepCollection.new(step_invocations)
end