Class: Cucumber::RbSupport::RbHook
- Defined in:
- lib/cucumber/rb_support/rb_hook.rb
Overview
Wrapper for Before, After and AfterStep hooks
Instance Attribute Summary collapse
-
#tag_expressions ⇒ Object
readonly
Returns the value of attribute tag_expressions.
Instance Method Summary collapse
-
#initialize(rb_language, tag_expressions, proc) ⇒ RbHook
constructor
A new instance of RbHook.
- #invoke(location, argument, &block) ⇒ Object
Constructor Details
#initialize(rb_language, tag_expressions, proc) ⇒ RbHook
Returns a new instance of RbHook.
7 8 9 10 11 |
# File 'lib/cucumber/rb_support/rb_hook.rb', line 7 def initialize(rb_language, tag_expressions, proc) @rb_language = rb_language @tag_expressions = tag_expressions @proc = proc end |
Instance Attribute Details
#tag_expressions ⇒ Object (readonly)
Returns the value of attribute tag_expressions.
5 6 7 |
# File 'lib/cucumber/rb_support/rb_hook.rb', line 5 def tag_expressions @tag_expressions end |
Instance Method Details
#invoke(location, argument, &block) ⇒ Object
13 14 15 |
# File 'lib/cucumber/rb_support/rb_hook.rb', line 13 def invoke(location, argument, &block) @rb_language.current_world.cucumber_instance_exec(false, location, *[argument, block].compact, &@proc) end |