From 460c503edc6a11dcc44a2fad3c75e5ef96124e9b Mon Sep 17 00:00:00 2001 From: Adam Jahn Date: Sun, 10 Jul 2016 15:02:20 -0400 Subject: specs for msdfs root, closes #56 --- spec/defines/samba__server__share_spec.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'spec/defines') diff --git a/spec/defines/samba__server__share_spec.rb b/spec/defines/samba__server__share_spec.rb index 2033ee8..ec36f24 100644 --- a/spec/defines/samba__server__share_spec.rb +++ b/spec/defines/samba__server__share_spec.rb @@ -42,6 +42,7 @@ shared_examples "default share" do set.with("inherit acls") set.with("delete readonly") set.with("printer name") + set.with("msdfs root") end let(:change_set) { default_changes } let(:changes) { change_set.to_a } @@ -653,6 +654,24 @@ describe 'samba::server::share', :type => :define do }} let(:change_set) { default_changes.with("printer name", "'killing trees'") } end + + context 'with msdfs_root set to true' do + include_examples "default share" + let(:params) {{ + :ensure => 'present', + :msdfs_root => true, + }} + let(:change_set) { default_changes.with("msdfs root", "yes") } + end + + context 'with msdfs_root set to false' do + include_examples "default share" + let(:params) {{ + :ensure => 'present', + :msdfs_root => false, + }} + let(:change_set) { default_changes.with("msdfs root", "no") } + end end end end -- cgit v1.2.3