Sha256: 44a949ccaaf2d7e5dfd724861a09a04d9e97aa3829877ba44a5ddbe0cce9bc9e
Contents?: true
Size: 430 Bytes
Versions: 6
Compression:
Stored size: 430 Bytes
Contents
require 'spec_helper' describe SCSSLint::Linter::SpaceAfterPropertyName do context 'when a property name is followed by a space' do let(:css) { <<-CSS } p { margin : 0; } CSS it { should report_lint line: 2 } end context 'when a property name is not followed by a space' do let(:css) { <<-CSS } p { margin: 0; } CSS it { should_not report_lint } end end
Version data entries
6 entries across 6 versions & 1 rubygems