diff options
author | Nick Lewis <nick@puppetlabs.com> | 2011-07-21 11:52:27 -0700 |
---|---|---|
committer | Jacob Helwig <jacob@puppetlabs.com> | 2011-08-19 13:52:56 -0700 |
commit | 028b795e2c705baa3652f26d8eec090e6b428d33 (patch) | |
tree | 563f0f0285938699daae83bef6660a8547c09e49 /spec/unit/util | |
parent | 7c4dbeb24fcfac432ac9540bd4e92ba84d187472 (diff) | |
download | puppet-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)
Diffstat (limited to 'spec/unit/util')
-rwxr-xr-x | spec/unit/util/autoload_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
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') |