Class: CukeLinter::TestWithActionStepAsFinalStepLinter

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

Overview

A linter that detects scenarios and outlines that have an action step as their final step

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

#configure(options) ⇒ Object

Changes the linting settings on the linter using the provided configuration



7
8
9
# File 'lib/cuke_linter/linters/test_with_action_step_as_final_step_linter.rb', line 7

def configure(options)
  @when_keywords = options['When']
end

#messageObject

The message used to describe the problem that has been found



22
23
24
# File 'lib/cuke_linter/linters/test_with_action_step_as_final_step_linter.rb', line 22

def message
  "Test has 'When' as the final step."
end

#rule(model) ⇒ Object

The rule used to determine if a model has a problem



12
13
14
15
16
17
18
19
# File 'lib/cuke_linter/linters/test_with_action_step_as_final_step_linter.rb', line 12

def rule(model)
  return false unless model.is_a?(CukeModeler::Scenario) || model.is_a?(CukeModeler::Outline)

  model_steps = model.steps || []
  return false unless model_steps.last

  when_keywords.include?(model_steps.last.keyword)
end