spec/spec_helper.rb in scss_lint-0.40.1 vs spec/spec_helper.rb in scss_lint-0.41.0
- old
+ new
@@ -23,10 +23,10 @@
config.before(:each) do
# If running a linter spec, run the described linter against the CSS code
# for each example. This significantly DRYs up our linter specs to contain
# only tests, since all the setup code is now centralized here.
- if described_class <= SCSSLint::Linter
+ if described_class && described_class <= SCSSLint::Linter
initial_indent = scss[/\A(\s*)/, 1]
normalized_css = scss.gsub(/^#{initial_indent}/, '')
# Use the configuration settings defined by default unless a specific
# configuration has been provided for the test.