class CukeLinter::TestWithNoNameLinter

A linter that detects scenarios and outlines that do not have a name

Public Instance Methods

message() click to toggle source

The message used to describe the problem that has been found

# File lib/cuke_linter/linters/test_with_no_name_linter.rb, line 15
def message
  'Test does not have a name.'
end
rule(model) click to toggle source

The rule used to determine if a model has a problem

# File lib/cuke_linter/linters/test_with_no_name_linter.rb, line 8
def rule(model)
  return false unless model.is_a?(CukeModeler::Scenario) || model.is_a?(CukeModeler::Outline)

  model.name.nil? || model.name.empty?
end