summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2012-10-25 15:42:05 -0700
committerJeff McCune <jeff@puppetlabs.com>2012-10-25 15:42:05 -0700
commit9e8c60a8b73fd96393b08d690c7197e62aae623e (patch)
tree999c0ffc0511fcdf4d6e5ebe8045bd6495a96772 /spec/spec_helper.rb
parentc8c7afc7a00aaeeddea6514d9fe9508513e53a73 (diff)
downloadpuppet-stdlib-9e8c60a8b73fd96393b08d690c7197e62aae623e.tar.gz
puppet-stdlib-9e8c60a8b73fd96393b08d690c7197e62aae623e.tar.bz2
Revert "Merge branch '2.5.x' into 3.0.x"
This reverts commit c8c7afc7a00aaeeddea6514d9fe9508513e53a73, reversing changes made to 03ec16e291a70ac5ac412be36ae3b86a771b98af. This was a mistake on my part. 2.5 is a minor release and minor releases should never be merged into patch level branches. 2.5.x should have been merged into 3.1.x instead.
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 931d35c..e269b90 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -11,18 +11,3 @@ 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