class CucumberLint::UnsupportedStyle

A class representing a user configuration that tries to use an unsupported style

Public Class Methods

new(style, supported_styles, override) click to toggle source
Calls superclass method
# File lib/cucumber_lint/errors/unsupported_style.rb, line 5
def initialize style, supported_styles, override
  super("#{style} does not support #{override}. Supported: #{supported_styles.join(', ')}")
end