Class: CukeLinter::OutlineWithSingleExampleRowLinter

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

Overview

A linter that detects outlines that don’t have multiple example rows

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



17
18
19
# File 'lib/cuke_linter/linters/outline_with_single_example_row_linter.rb', line 17

def message
  'Outline has only one example row'
end

#rule(model) ⇒ Object

The rule used to determine if a model has a problem



7
8
9
10
11
12
13
14
# File 'lib/cuke_linter/linters/outline_with_single_example_row_linter.rb', line 7

def rule(model)
  return false unless model.is_a?(CukeModeler::Outline)
  return false if model.examples.nil?

  examples_rows = model.examples.collect(&:argument_rows).flatten

  examples_rows.count == 1
end