summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Lewis <nick@puppetlabs.com>2011-07-21 11:52:27 -0700
committerJacob Helwig <jacob@puppetlabs.com>2011-08-19 13:52:56 -0700
commit028b795e2c705baa3652f26d8eec090e6b428d33 (patch)
tree563f0f0285938699daae83bef6660a8547c09e49
parent7c4dbeb24fcfac432ac9540bd4e92ba84d187472 (diff)
downloadpuppet-028b795e2c705baa3652f26d8eec090e6b428d33.tar.gz
puppet-028b795e2c705baa3652f26d8eec090e6b428d33.tar.xz
puppet-028b795e2c705baa3652f26d8eec090e6b428d33.zip
Remove dead uses of Puppet::Util::Cacher from autoloader
In the past, Puppet::Util::Autoload used a cached_attr for its 'searchpath'. However, it no longer does that, so its references to Puppet::Util::Cacher are unnecessary. Reviewed-By: Jacob Helwig <jacob@puppetlabs.com> (cherry picked from commit ce08cba9eb92abce7f7ab77dcf7eb9f9435d4040)
-rw-r--r--lib/puppet/util/autoload.rb2
-rwxr-xr-xspec/unit/util/autoload_spec.rb4
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/puppet/util/autoload.rb b/lib/puppet/util/autoload.rb
index 6537a4a4e..2e8710ab1 100644
--- a/lib/puppet/util/autoload.rb
+++ b/lib/puppet/util/autoload.rb
@@ -1,5 +1,4 @@
require 'puppet/util/warnings'
-require 'puppet/util/cacher'
# Autoload paths, either based on names or all at once.
class Puppet::Util::Autoload
@@ -7,7 +6,6 @@ class Puppet::Util::Autoload
include Puppet::Util
include Puppet::Util::Warnings
- include Puppet::Util::Cacher
include Puppet::Util::Autoload::FileCache
@autoloaders = {}
diff --git a/spec/unit/util/autoload_spec.rb b/spec/unit/util/autoload_spec.rb
index 100975f27..47ee54e1f 100755
--- a/spec/unit/util/autoload_spec.rb
+++ b/spec/unit/util/autoload_spec.rb
@@ -12,10 +12,6 @@ describe Puppet::Util::Autoload do
@autoload.stubs(:eachdir).yields "/my/dir"
end
- it "should use the Cacher module" do
- Puppet::Util::Autoload.ancestors.should be_include(Puppet::Util::Cacher)
- end
-
describe "when building the search path" do
before :each do
@dira = make_absolute('/a')