class Object
Constants
- SPEC_SUITES
Public Instance Methods
manages_symlinks?()
click to toggle source
# File lib/rspec-puppet/monkey_patches.rb, line 396 def manages_symlinks? if RSpec::Puppet.rspec_puppet_example? true else old_manages_symlinks.bind(self).call(value) end end
supports_acl?(path)
click to toggle source
# File lib/rspec-puppet/monkey_patches.rb, line 386 def supports_acl?(path) if RSpec::Puppet.rspec_puppet_example? true else old_supports_acl.bind(self).call(value) end end
trusted_server_facts()
click to toggle source
# File lib/rspec-puppet.rb, line 64 def trusted_server_facts @trusted_server_facts.nil? ? false : @trusted_server_facts end
trusted_server_facts=(value)
click to toggle source
# File lib/rspec-puppet.rb, line 68 def trusted_server_facts=(value) @trusted_server_facts = value adapter.setup_puppet(RSpec::Puppet.current_example) unless adapter.nil? end