Class: CukeLinter::FeatureFileWithMismatchedNameLinter

Inherits:
Linter
  • Object
show all
Defined in:
lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb

Overview

A linter that detects mismatched feature file names

Instance Attribute Summary

Attributes inherited from Linter

#name

Instance Method Summary collapse

Methods inherited from Linter

#initialize, #lint

Constructor Details

This class inherits a constructor from CukeLinter::Linter

Instance Method Details

#messageObject

The message used to describe the problem that has been found



20
21
22
# File 'lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb', line 20

def message
  'Feature file name does not match feature name.'
end

#rule(model) ⇒ Object

The rule used to determine if a model has a problem



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb', line 7

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