Class: CukeLinter::FeatureWithoutDescriptionLinter
- Defined in:
- lib/cuke_linter/linters/feature_without_description_linter.rb
Overview
A linter that detects features that don’t have a description
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
14 15 16 |
# File 'lib/cuke_linter/linters/feature_without_description_linter.rb', line 14 def 'Feature has no description' end |
#rule(model) ⇒ Object
The rule used to determine if a model has a problem
7 8 9 10 11 |
# File 'lib/cuke_linter/linters/feature_without_description_linter.rb', line 7 def rule(model) return false unless model.is_a?(CukeModeler::Feature) model.description.nil? || model.description.empty? end |