diff options
author | varac <varacanero@zeromail.org> | 2016-06-09 17:32:22 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-06-14 12:05:18 +0200 |
commit | 6087aa329ff92ce02107792faf233279e6a77d55 (patch) | |
tree | 30dd119bbaeda2e209a4bd49274963b590834318 /puppet/modules/concat/spec/defines | |
parent | bee234db0f65c44840b5a46a2558fbd4b3b7b7dc (diff) |
git subrepo clone https://leap.se/git/puppet_concat puppet/modules/concat
subrepo:
subdir: "puppet/modules/concat"
merged: "abce128"
upstream:
origin: "https://leap.se/git/puppet_concat"
branch: "master"
commit: "abce128"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "cb2995b"
Diffstat (limited to 'puppet/modules/concat/spec/defines')
-rw-r--r-- | puppet/modules/concat/spec/defines/init_spec.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/puppet/modules/concat/spec/defines/init_spec.rb b/puppet/modules/concat/spec/defines/init_spec.rb new file mode 100644 index 00000000..d968a26c --- /dev/null +++ b/puppet/modules/concat/spec/defines/init_spec.rb @@ -0,0 +1,20 @@ +require 'spec_helper' + +describe 'concat' do + basedir = '/var/lib/puppet/concat' + let(:title) { '/etc/foo.bar' } + let(:facts) { { :concat_basedir => '/var/lib/puppet/concat' } } + let :pre_condition do + 'include concat::setup' + end + it { should contain_file("#{basedir}/_etc_foo.bar").with('ensure' => 'directory') } + it { should contain_file("#{basedir}/_etc_foo.bar/fragments").with('ensure' => 'directory') } + + it { should contain_file("#{basedir}/_etc_foo.bar/fragments.concat").with('ensure' => 'present') } + it { should contain_file("/etc/foo.bar").with('ensure' => 'present') } + it { should contain_exec("concat_/etc/foo.bar").with_command( + "#{basedir}/bin/concatfragments.sh "+ + "-o #{basedir}/_etc_foo.bar/fragments.concat.out "+ + "-d #{basedir}/_etc_foo.bar ") + } +end |