Class: CukeLinter::BackgroundDoesMoreThanSetupLinter
- Defined in:
- lib/cuke_linter/linters/background_does_more_than_setup_linter.rb
Overview
A linter that detects backgrounds that have non-setup steps
Instance Attribute Summary
Attributes inherited from Linter
Instance Method Summary collapse
-
#configure(options) ⇒ Object
Changes the linting settings on the linter using the provided configuration.
-
#message ⇒ Object
The message used to describe the problem that has been found.
-
#rule(model) ⇒ Object
The rule used to determine if a model has a problem.
Methods inherited from Linter
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 10 |
# File 'lib/cuke_linter/linters/background_does_more_than_setup_linter.rb', line 7 def configure() @when_keywords = ['When'] @then_keywords = ['Then'] end |
#message ⇒ Object
The message used to describe the problem that has been found
20 21 22 |
# File 'lib/cuke_linter/linters/background_does_more_than_setup_linter.rb', line 20 def 'Background has non-setup steps' end |
#rule(model) ⇒ Object
The rule used to determine if a model has a problem
13 14 15 16 17 |
# File 'lib/cuke_linter/linters/background_does_more_than_setup_linter.rb', line 13 def rule(model) return false unless model.is_a?(CukeModeler::Background) model.steps.map(&:keyword).any? { |keyword| when_keywords.include?(keyword) || then_keywords.include?(keyword) } end |