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
105 106 107 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 105 def self.suppress_provider @suppress_provider = true end |
.suppress_provider? ⇒ Boolean
101 102 103 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 101 def self.suppress_provider? @suppress_provider ||= false end |
.unsuppress_provider ⇒ Object
109 110 111 |
# File 'lib/rspec-puppet/monkey_patches.rb', line 109 def self.unsuppress_provider @suppress_provider = false end |