summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2012-10-25 10:30:14 -0700
committerJeff McCune <jeff@puppetlabs.com>2012-10-25 10:30:14 -0700
commitb8a0f2817279246224dce146a7fb31d14cee4ea5 (patch)
tree74a524a17c155fa98ced1e592b07e7389451c49b /spec/spec_helper.rb
parent6961179007dce76d7fb9bd1fc361273acb4129a7 (diff)
parent74e6411157b8df1af9a24c17971e3236f3096529 (diff)
downloadpuppet-stdlib-b8a0f2817279246224dce146a7fb31d14cee4ea5.tar.gz
puppet-stdlib-b8a0f2817279246224dce146a7fb31d14cee4ea5.tar.bz2
Merge branch '2.4.x'
* 2.4.x: Prevent undefined method `split' for nil:NilClass with pe_foo_version facts (maint) Clear all facts before each example Add spec tests for pe_version facts Add PE facts to stdlib Conflicts: spec/spec_helper.rb
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index e269b90..931d35c 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -11,3 +11,18 @@ gem 'rspec', '>=2.0.0'
require 'rspec/expectations'
require 'puppetlabs_spec_helper/module_spec_helper'
+
+RSpec.configure do |config|
+ # FIXME REVISIT - We may want to delegate to Facter like we do in
+ # Puppet::PuppetSpecInitializer.initialize_via_testhelper(config) because
+ # this behavior is a duplication of the spec_helper in Facter.
+ config.before :each do
+ # Ensure that we don't accidentally cache facts and environment between
+ # test cases. This requires each example group to explicitly load the
+ # facts being exercised with something like
+ # Facter.collection.loader.load(:ipaddress)
+ Facter::Util::Loader.any_instance.stubs(:load_all)
+ Facter.clear
+ Facter.clear_messages
+ end
+end