class CukeLinter::SingleTestBackgroundLinter
A linter that detects backgrounds that apply to only one test
Public Instance Methods
message()
click to toggle source
The message used to describe the problem that has been found
# File lib/cuke_linter/linters/single_test_background_linter.rb, line 15 def message 'Background used with only one test' end
rule(model)
click to toggle source
The rule used to determine if a model has a problem
# File lib/cuke_linter/linters/single_test_background_linter.rb, line 8 def rule(model) return false unless model.is_a?(CukeModeler::Background) model.parent_model.tests.count == 1 end