# File lib/nyan_cat_formatter/rspec3.rb, line 18
  def start(notification)
    # TODO: Lazy fix for specs.
    if notification.kind_of?(Integer)
      super(OpenStruct.new(:count => notification))
    else
      super(notification)
    end

    @current = @color_index = @passing_count = @failure_count = @pending_count = 0
    @example_results = []
    @failed_examples = []
    @pending_examples = []
  end