class CukeLinter::FeatureWithoutDescriptionLinter
A linter that detects features that don't have a description
Public Instance Methods
message()
click to toggle source
The message used to describe the problem that has been found
# File lib/cuke_linter/linters/feature_without_description_linter.rb, line 15 def message 'Feature has no description' end
rule(model)
click to toggle source
The rule used to determine if a model has a problem
# File lib/cuke_linter/linters/feature_without_description_linter.rb, line 8 def rule(model) return false unless model.is_a?(CukeModeler::Feature) model.description.nil? || model.description.empty? end