summaryrefslogtreecommitdiffstats
path: root/spec/integration
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-03-23 14:39:54 -0500
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commitbf3359e697baf5443283b87de6183b498093a524 (patch)
treeacdf2f2a71aeefd2edf8bc22817332b35192e672 /spec/integration
parentb41d53596cdcb6d7220b93926f6eedf171c09c46 (diff)
downloadpuppet-bf3359e697baf5443283b87de6183b498093a524.tar.gz
puppet-bf3359e697baf5443283b87de6183b498093a524.tar.xz
puppet-bf3359e697baf5443283b87de6183b498093a524.zip
Adding client and server data dirs
These replace the yaml and file dirs, since in #1943 we're merging the file and yaml Terminus classes. Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/integration')
-rwxr-xr-xspec/integration/defaults.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/integration/defaults.rb b/spec/integration/defaults.rb
index 1888813f5..8cbf5e46b 100755
--- a/spec/integration/defaults.rb
+++ b/spec/integration/defaults.rb
@@ -48,6 +48,14 @@ describe "Puppet defaults" do
Puppet.settings[:yamldir].should_not == Puppet.settings[:clientyamldir]
end
+ it "should have a client_datadir setting" do
+ Puppet.settings[:client_datadir].should_not be_nil
+ end
+
+ it "should have different values for the server_datadir and client_datadir" do
+ Puppet.settings[:server_datadir].should_not == Puppet.settings[:client_datadir]
+ end
+
# See #1232
it "should not specify a user or group for the clientyamldir" do
Puppet.settings.setting(:clientyamldir).owner.should be_nil