class CukeLinter::FeatureFileWithMismatchedNameLinter

A linter that detects mismatched feature file names

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_file_with_mismatched_name_linter.rb, line 21
def message
  'Feature file name does not match feature name.'
end
rule(model) click to toggle source

The rule used to determine if a model has a problem

# File lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb, line 8
def rule(model)
  return false unless model.is_a?(CukeModeler::FeatureFile)

  file_name    = File.basename(model.path, '.feature')
  feature_name = model.feature.name

  normalized_file_name    = file_name.downcase.delete('_ -')
  normalized_feature_name = feature_name.downcase.delete('_ -')

  normalized_file_name != normalized_feature_name
end