Sha256: abf52d075e002639ac254188aca322bfdd665d94392254f7298d3ac19689d149

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

require 'spec_helper'

describe LintTrap::Linter::RuboCop do
  let(:container){LintTrap::Container::Fake.new}
  let(:config){nil}
  let(:files){%w(good.rb bad.rb)}
  subject(:linter){described_class.new(container: container, config: config)}
  let(:command){instance_double(LintTrap::Command)}

  describe '#lint' do
    context 'when config is provided' do
      let(:config){'.rubocop.yml'}

      it 'runs the lint command with the correct arguments' do
        expect(LintTrap::Command).to receive(:new).with(
          'rubocop',
          [
            '--require', container.config_path(described_class::FORMATTER),
            '--format', 'LintTrap::Rubocop::Formatter',
            '--no-color',
            '--config', config
          ],
          files
        ).and_return(command)
        expect(command).to receive(:run).with(container)

        linter.lint(files)
      end
    end

    context 'when config is not provided' do
      it 'runs the lint command with the correct arguments' do
        expect(LintTrap::Command).to receive(:new).with(
          'rubocop',
          [
            '--require', container.config_path(described_class::FORMATTER),
            '--format', 'LintTrap::Rubocop::Formatter',
            '--no-color'
          ],
          files
        ).and_return(command)
        expect(command).to receive(:run).with(container)

        linter.lint(files)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lint_trap-0.0.6 spec/linter/rubocop_spec.rb
lint_trap-0.0.5 spec/linter/rubocop_spec.rb
lint_trap-0.0.4 spec/linter/rubocop_spec.rb
lint_trap-0.0.3 spec/linter/rubocop_spec.rb