summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-03-24 16:37:48 -0500
committerLuke Kanies <luke@madstop.com>2008-03-24 16:37:48 -0500
commit017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9 (patch)
treeaf020b8ea4eda42258502328482511989da5bfb5 /spec
parent30f0fc0b1ce1900b6d94ec61ddb17fa1fdfdae5a (diff)
downloadpuppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.tar.gz
puppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.tar.xz
puppet-017f6730aa4b8afcc0f8da80c79eb6981a1ad6b9.zip
Moved the configuration of the Node cache to the puppetmasterd
executable, since it otherwise causes caches to be used in all cases, which we don't want (e.g., bin/puppet was using them).
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/node.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/node.rb b/spec/unit/node.rb
index 4861cb9e3..e62bd5d07 100755
--- a/spec/unit/node.rb
+++ b/spec/unit/node.rb
@@ -127,8 +127,8 @@ describe Puppet::Node, " when indirecting" do
Puppet::Node.indirection.terminus_class.should == :plain
end
- it "should use yaml for caching" do
- Puppet::Node.indirection.cache_class.should == :yaml
+ it "should not have a cache class defined" do
+ Puppet::Node.indirection.cache_class.should be_nil
end
after do