module Kitchen::Pulumi::ConfigAttribute::Systems

{include:Kitchen::Pulumi::ConfigSchemas::Systems}

If the systems key is omitted then no tests will be executed.

Public Class Methods

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

Public Instance Methods

config_systems_default_value() click to toggle source
# File lib/kitchen/pulumi/config_attribute/systems.rb, line 27
def config_systems_default_value
  []
end