module Kitchen::Pulumi::ConfigAttribute::FailFast

Attribute used to determine if Kitchen should halt on the first error during verification.

Public Class Methods

included(plugin_class) click to toggle source
# File lib/kitchen/pulumi/config_attribute/fail_fast.rb, line 14
def self.included(plugin_class)
  definer = ConfigAttributeDefiner.new(
    attribute: self,
    schema: ConfigSchemas::Boolean,
  )
  definer.define(plugin_class: plugin_class)
end
to_sym() click to toggle source
# File lib/kitchen/pulumi/config_attribute/fail_fast.rb, line 22
def self.to_sym
  :fail_fast
end

Public Instance Methods

config_fail_fast_default_value() click to toggle source
# File lib/kitchen/pulumi/config_attribute/fail_fast.rb, line 28
def config_fail_fast_default_value
  true
end