mirror of
https://github.com/krislamo/puppet-acme_vault
synced 2024-11-09 20:30:36 +00:00
24 lines
775 B
Ruby
24 lines
775 B
Ruby
require 'puppetlabs_spec_helper/module_spec_helper'
|
|
require 'rspec-puppet-facts'
|
|
include RspecPuppetFacts
|
|
|
|
default_facts = {
|
|
puppetversion: Puppet.version,
|
|
facterversion: Facter.version,
|
|
}
|
|
|
|
default_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_facts.yml'))
|
|
default_module_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_module_facts.yml'))
|
|
|
|
if File.exist?(default_facts_path) && File.readable?(default_facts_path)
|
|
default_facts.merge!(YAML.safe_load(File.read(default_facts_path)))
|
|
end
|
|
|
|
if File.exist?(default_module_facts_path) && File.readable?(default_module_facts_path)
|
|
default_facts.merge!(YAML.safe_load(File.read(default_module_facts_path)))
|
|
end
|
|
|
|
RSpec.configure do |c|
|
|
c.default_facts = default_facts
|
|
end
|