# File lib/spec/runner/formatter/base_text_formatter.rb, line 14
        def initialize(options, where)
          super
          if where.is_a?(String)
            @output = File.open(where, 'w')
          else
            @output = where
          end
          @pending_examples = []
        end