Class: RSpec::Core::Example::Procsy
- Inherits:
-
Object
- Object
- RSpec::Core::Example::Procsy
- Defined in:
- lib/rspec/core/example.rb
Overview
This class also exposes the instance methods of RSpec::Core::Example, proxying them through to the wrapped RSpec::Core::Example instance.
Wraps both a Proc
and an RSpec::Core::Example for use in around hooks. In around hooks we need to yield this special
kind of object (rather than the raw RSpec::Core::Example) because when
there are multiple around
hooks we have to wrap them recursively.
Instance Attribute Summary collapse
-
#example ⇒ void
readonly
The RSpec::Core::Example instance.
Instance Method Summary collapse
-
#call(*args, &block) ⇒ void
(also: #run)
Calls the proc and notes that the example has been executed.
-
#executed? ⇒ Boolean
Indicates whether or not the around hook has executed the example.
-
#initialize(example, &block) ⇒ Procsy
constructor
A new instance of Procsy.
-
#to_proc ⇒ void
Provides a wrapped proc that will update our
executed?
state when executed.
Constructor Details
#initialize(example, &block) ⇒ Procsy
Returns a new instance of Procsy.
348 349 350 351 352 |
# File 'lib/rspec/core/example.rb', line 348 def initialize(example, &block) @example = example @proc = block @executed = false end |
Instance Attribute Details
#example ⇒ void (readonly)
The RSpec::Core::Example instance.
319 320 321 |
# File 'lib/rspec/core/example.rb', line 319 def example @example end |
Instance Method Details
#call(*args, &block) ⇒ void Also known as: run
Calls the proc and notes that the example has been executed.
336 337 338 339 |
# File 'lib/rspec/core/example.rb', line 336 def call(*args, &block) @executed = true @proc.call(*args, &block) end |
#executed? ⇒ Boolean
Indicates whether or not the around hook has executed the example.
360 361 362 |
# File 'lib/rspec/core/example.rb', line 360 def executed? @executed end |
#to_proc ⇒ void
Provides a wrapped proc that will update our executed?
state when
executed.
344 345 346 |
# File 'lib/rspec/core/example.rb', line 344 def to_proc method(:call).to_proc end |