diff options
| author | Luke Kanies <luke@madstop.com> | 2008-07-04 22:14:37 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-07-04 22:14:37 -0500 |
| commit | b0febd263c0cb8e61d512898f7c79868ea77e619 (patch) | |
| tree | 3f35c4b2d7186d3c69c070c9edc684ccdc51f658 /spec/integration | |
| parent | df528a66cafc8538c3208bf0b52fdbe1065f6e48 (diff) | |
| parent | 81be1c5c3f85f514505e99fab5b8a2b2ae6fbec8 (diff) | |
Merge branch '0.24.x'
Conflicts:
lib/puppet/util/settings.rb
spec/integration/defaults.rb
spec/unit/node/catalog.rb
spec/unit/type/interface.rb
spec/unit/type/ssh_authorized_key.rb
Diffstat (limited to 'spec/integration')
| -rwxr-xr-x | spec/integration/defaults.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/integration/defaults.rb b/spec/integration/defaults.rb index 9d8ea30f7..eba58a3d5 100755 --- a/spec/integration/defaults.rb +++ b/spec/integration/defaults.rb @@ -27,4 +27,24 @@ describe "Puppet defaults" do Puppet.settings[:cacrl] = 'false' end end + + it "should have a clientyamldir setting" do + Puppet.settings[:clientyamldir].should_not be_nil + end + + it "should have different values for the yamldir and clientyamldir" do + Puppet.settings[:yamldir].should_not == Puppet.settings[:clientyamldir] + end + + # See #1232 + it "should not specify a user or group for the clientyamldir" do + Puppet.settings.element(:clientyamldir).owner.should be_nil + Puppet.settings.element(:clientyamldir).group.should be_nil + end + + # See #1232 + it "should not specify a user or group for the rundir" do + Puppet.settings.element(:rundir).owner.should be_nil + Puppet.settings.element(:rundir).group.should be_nil + end end |
