Class: CukeLinter::FeatureWithoutScenariosLinter
- Defined in:
- lib/cuke_linter/linters/feature_without_scenarios_linter.rb
Overview
A linter that detects empty features
Instance Attribute Summary
Attributes inherited from Linter
Instance Method Summary collapse
-
#message ⇒ Object
The message used to describe the problem that has been found.
-
#rule(model) ⇒ Object
The rule used to determine if a model has a problem.
Methods inherited from Linter
Constructor Details
This class inherits a constructor from CukeLinter::Linter
Instance Method Details
#message ⇒ Object
The message used to describe the problem that has been found
18 19 20 |
# File 'lib/cuke_linter/linters/feature_without_scenarios_linter.rb', line 18 def 'Feature has no scenarios' end |
#rule(model) ⇒ Object
The rule used to determine if a model has a problem
7 8 9 10 11 12 13 14 15 |
# File 'lib/cuke_linter/linters/feature_without_scenarios_linter.rb', line 7 def rule(model) # rubocop:disable Metrics/CyclomaticComplexity # It's good enough return false unless model.is_a?(CukeModeler::Feature) feature_tests = model.tests && model.tests.any? rule_tests = model.respond_to?(:rules) && # Earlier versions of CukeModeler did not have Rule models model.rules && model.rules.any? { |rule| rule.tests && rule.tests.any? } !(feature_tests || rule_tests) end |