enkessler/cuke_linter

View on GitHub
lib/cuke_linter/linters/feature_without_description_linter.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CukeLinter

  # A linter that detects features that don't have a description
  class FeatureWithoutDescriptionLinter < Linter

    # The rule used to determine if a model has a problem
    def rule(model)
      return false unless model.is_a?(CukeModeler::Feature)

      model.description.nil? || model.description.empty?
    end

    # The message used to describe the problem that has been found
    def message
      'Feature has no description'
    end

  end
end