Class: Cucumber::Runtime::AfterHooks

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/runtime/after_hooks.rb

Instance Method Summary collapse

Constructor Details

#initialize(hooks, scenario) ⇒ AfterHooks

Returns a new instance of AfterHooks.



4
5
6
7
# File 'lib/cucumber/runtime/after_hooks.rb', line 4

def initialize(hooks, scenario)
  @hooks = hooks
  @scenario = scenario
end

Instance Method Details

#apply_to(test_case) ⇒ Object



9
10
11
12
13
# File 'lib/cucumber/runtime/after_hooks.rb', line 9

def apply_to(test_case)
  test_case.with_steps(
    test_case.test_steps + after_hooks(test_case.source).reverse
  )
end