Sha256: 54d9adc193052ba5f613d057fd18f9c8bb9d4977dd4d9e8effeba8e2627456e7
Contents?: true
Size: 1.35 KB
Versions: 3
Compression:
Stored size: 1.35 KB
Contents
require 'spec_helper' describe LintTrap::Linter::JSHint do let(:container){LintTrap::Container::Fake.new} let(:options){{}} let(:files){%w(good.js bad.js)} subject(:linter){described_class.new} let(:command){instance_double(LintTrap::Command)} it_behaves_like 'linter' its(:languages){is_expected.to eq([LintTrap::Language::JavaScript.new])} describe '#lint' do context 'when config is provided' do let(:options){{config: '.jshintrc'}} it 'runs the lint command with the correct arguments' do expect(LintTrap::Command).to receive(:new).with( 'jshint', [ '--reporter', container.config_path(described_class::FORMATTER), '--config', options[:config] ], files ).and_return(command) expect(command).to receive(:run).with(container) linter.lint(files, container, options) 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( 'jshint', [ '--reporter', container.config_path(described_class::FORMATTER) ], files ).and_return(command) expect(command).to receive(:run).with(container) linter.lint(files, container, options) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lint_trap-0.0.11 | spec/linter/jshint_spec.rb |
lint_trap-0.0.10 | spec/linter/jshint_spec.rb |
lint_trap-0.0.9 | spec/linter/jshint_spec.rb |