Class: RSpec::Queue::QueueReporter
- Inherits:
-
SimpleDelegator
- Object
- SimpleDelegator
- RSpec::Queue::QueueReporter
- Defined in:
- lib/rspec/queue.rb
Instance Method Summary collapse
- #acknowledge ⇒ Object
- #cancel_run! ⇒ Object
-
#initialize(reporter, queue, example) ⇒ QueueReporter
constructor
A new instance of QueueReporter.
- #report_failure! ⇒ Object
- #report_success! ⇒ Object
- #requeue ⇒ Object
Constructor Details
#initialize(reporter, queue, example) ⇒ QueueReporter
Returns a new instance of QueueReporter.
326 327 328 329 330 |
# File 'lib/rspec/queue.rb', line 326 def initialize(reporter, queue, example) @queue = queue @example = example super(reporter) end |
Instance Method Details
#acknowledge ⇒ Object
351 352 353 |
# File 'lib/rspec/queue.rb', line 351 def acknowledge @queue.acknowledge(@example) end |
#cancel_run! ⇒ Object
344 345 346 347 348 349 |
# File 'lib/rspec/queue.rb', line 344 def cancel_run! # Remove the requeued example from the list of examples ran # Otherwise some formatters might break because the example state is reset examples.pop nil end |
#report_failure! ⇒ Object
336 337 338 |
# File 'lib/rspec/queue.rb', line 336 def report_failure! @queue.report_failure! end |
#report_success! ⇒ Object
332 333 334 |
# File 'lib/rspec/queue.rb', line 332 def report_success! @queue.report_success! end |
#requeue ⇒ Object
340 341 342 |
# File 'lib/rspec/queue.rb', line 340 def requeue @queue.requeue(@example) end |