spec/linter/rubocop_spec.rb in lint_trap-0.0.6 vs spec/linter/rubocop_spec.rb in lint_trap-0.0.7
- old
+ new
@@ -1,32 +1,32 @@
require 'spec_helper'
describe LintTrap::Linter::RuboCop do
let(:container){LintTrap::Container::Fake.new}
- let(:config){nil}
+ let(:options){{}}
let(:files){%w(good.rb bad.rb)}
- subject(:linter){described_class.new(container: container, config: config)}
+ subject(:linter){described_class.new}
let(:command){instance_double(LintTrap::Command)}
describe '#lint' do
context 'when config is provided' do
- let(:config){'.rubocop.yml'}
+ let(:options){{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
+ '--config', options[:config]
],
files
).and_return(command)
expect(command).to receive(:run).with(container)
- linter.lint(files)
+ linter.lint(files, container, options)
end
end
context 'when config is not provided' do
it 'runs the lint command with the correct arguments' do
@@ -39,10 +39,10 @@
],
files
).and_return(command)
expect(command).to receive(:run).with(container)
- linter.lint(files)
+ linter.lint(files, container, options)
end
end
end
end