Sha256: fc68dd8cdfa2d79105ec862221ce60a02b3b9fe82bfe947d203dfcfca04456b4

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

# encoding: utf-8

require 'spec_helper'
require 'stringio'

module Rubocop
  module Formatter
    describe FileListFormatter do
      subject(:formatter) { FileListFormatter.new(output) }
      let(:output) { StringIO.new }

      describe '#file_finished' do
        it 'displays parsable text' do
          cop = Cop::Cop.new
          source_buffer = Parser::Source::Buffer.new('test', 1)
          source_buffer.source = %w(a b cdefghi).join("\n")

          cop.add_offence(:convention, nil,
                          Parser::Source::Range.new(source_buffer, 0, 1),
                          'message 1')
          cop.add_offence(:fatal, nil,
                          Parser::Source::Range.new(source_buffer, 9, 10),
                          'message 2')

          formatter.file_finished('test', cop.offences)
          formatter.file_finished('test_2', cop.offences)
          expect(output.string).to eq ['test',
                                       "test_2\n"].join("\n")
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.13.1 spec/rubocop/formatter/file_list_formatter_spec.rb
rubocop-0.13.0 spec/rubocop/formatter/file_list_formatter_spec.rb