Class: Puppet::Util::Assertion::Stubs::Type

Inherits:
Resource::Type
  • Object
show all
Defined in:
lib/puppet/util/assertion/stubs.rb

Overview

This type reimplements the Puppet::Resource::Type class and overwrites the parameter validation in order to allow any param to be assigned a value.

Instance Method Summary collapse

Instance Method Details

#valid_parameter?(name) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/puppet/util/assertion/stubs.rb', line 10

def valid_parameter?(name)
  true
end