Class: Puppet::Type
- Inherits:
-
Object
- Object
- Puppet::Type
- Defined in:
- lib/rspec-puppet/monkey_patches.rb
Overview
Allow rspec-puppet to prevent Puppet::Type from automatically picking a provider for a resource. We need to do this because in order to fully resolve the graph edges, we have to convert the Puppet::Resource objects into Puppet::Type objects so that their autorequires are evaluated. We need to prevent provider code from being called during this process as it’s very platform specific.
Class Method Summary collapse
Class Method Details
.suppress_provider ⇒ Object
93 94 95 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 93 def self.suppress_provider @suppress_provider = true end |
.suppress_provider? ⇒ Boolean
89 90 91 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 89 def self.suppress_provider? @suppress_provider ||= false end |
.unsuppress_provider ⇒ Object
97 98 99 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 97 def self.unsuppress_provider @suppress_provider = false end |