Class: TestProf::BeforeAll::HooksChain
- Inherits:
-
Object
- Object
- TestProf::BeforeAll::HooksChain
- Defined in:
- lib/test_prof/before_all.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#after ⇒ Object
readonly
Returns the value of attribute after.
-
#before ⇒ Object
readonly
Returns the value of attribute before.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type) ⇒ HooksChain
constructor
A new instance of HooksChain.
- #run ⇒ Object
Constructor Details
#initialize(type) ⇒ HooksChain
Returns a new instance of HooksChain.
53 54 55 56 57 |
# File 'lib/test_prof/before_all.rb', line 53 def initialize(type) @type = type @before = [] @after = [] end |
Instance Attribute Details
#after ⇒ Object (readonly)
Returns the value of attribute after.
51 52 53 |
# File 'lib/test_prof/before_all.rb', line 51 def after @after end |
#before ⇒ Object (readonly)
Returns the value of attribute before.
51 52 53 |
# File 'lib/test_prof/before_all.rb', line 51 def before @before end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
51 52 53 |
# File 'lib/test_prof/before_all.rb', line 51 def type @type end |
Instance Method Details
#run ⇒ Object
59 60 61 62 63 |
# File 'lib/test_prof/before_all.rb', line 59 def run before.each(&:call) yield after.each(&:call) end |