class RSpec3

def start(notification)

def start(notification)
  # TODO: Lazy fix for specs.
  if notification.kind_of?(Fixnum)
    super(OpenStruct.new(:count => notification))
  else
    super(notification)
  end
  @current = @color_index = @passing_count = 0
  @example_results = []
end