Class: GherkinLint::BackgroundRequiresMultipleScenarios

Inherits:
Linter
  • Object
show all
Defined in:
lib/gherkin_lint/linter/background_requires_multiple_scenarios.rb

Overview

service class for check that there are multiple scenarios once a background is used

Instance Attribute Summary

Attributes inherited from Linter

#issues

Instance Method Summary collapse

Methods inherited from Linter

#add_error, #add_warning, #backgrounds, descendants, #elements, #features, #files, #filled_scenarios, #filter_tag, #initialize, #line, #lint_files, #name, #reference, #render_step, #render_step_argument, #scenarios, #steps, #suppress, #suppress_tags, #tag?

Constructor Details

This class inherits a constructor from GherkinLint::Linter

Instance Method Details

#lintObject



6
7
8
9
10
11
12
13
14
# File 'lib/gherkin_lint/linter/background_requires_multiple_scenarios.rb', line 6

def lint
  backgrounds do |file, feature, background|
    scenarios = feature[:children].reject { |element| element[:type] == :Background }
    next if scenarios.length >= 2

    references = [reference(file, feature, background)]
    add_error(references, "There are just #{scenarios.length} scenarios")
  end
end