class RSpec::Queue::OrderRecorder

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/rspec/queue/order_recorder.rb, line 9
def initialize(*)
  super
  output.sync = true
end

Public Instance Methods

example_started(notification) click to toggle source
# File lib/rspec/queue/order_recorder.rb, line 14
def example_started(notification)
  return if notification.is_a?(RSpec::Core::Notifications::SkippedExampleNotification)
  output.write("#{notification.example.id}\n")
end