Sha256: 37aa324171e2a9dd884c220605ab8ef65629cd31651210133642393a663fdc51
Contents?: true
Size: 1.15 KB
Versions: 4
Compression:
Stored size: 1.15 KB
Contents
require 'spec_helper' describe LintTrap::Linter::CSSLint do let(:container){LintTrap::Container::Fake.new} let(:config){nil} let(:files){%w(good.css bad.css)} 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){'.csslintrc'} it 'runs the lint command with the correct arguments' do expect(LintTrap::Command).to receive(:new).with( 'csslint', [ '--format=compact', '--config=.csslintrc' ], 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( 'csslint', [ '--format=compact' ], 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/csslint_spec.rb |
lint_trap-0.0.5 | spec/linter/csslint_spec.rb |
lint_trap-0.0.4 | spec/linter/csslint_spec.rb |
lint_trap-0.0.3 | spec/linter/csslint_spec.rb |