| require 'puppetlabs_spec_helper/module_spec_helper' |
| require 'rspec-puppet-facts' |
| include RspecPuppetFacts |
| |
| require 'coveralls' |
| Coveralls.wear! |
| |
| 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 |
| |
| require 'spec_helper_methods' |