summaryrefslogtreecommitdiff
path: root/spec/defines/init_spec.rb
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:21 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:21 -0400
commit996f68542865b811b1b3ca93119f7ca8cfb73fa0 (patch)
tree2535cb145ee2ed479dc992bd78a9819cb5b92996 /spec/defines/init_spec.rb
Squashed 'puppet/modules/concat/' content from commit abce128
git-subtree-dir: puppet/modules/concat git-subtree-split: abce1280e07b544d8455f1572dd870bbd2f14892
Diffstat (limited to 'spec/defines/init_spec.rb')
-rw-r--r--spec/defines/init_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/defines/init_spec.rb b/spec/defines/init_spec.rb
new file mode 100644
index 00000000..d968a26c
--- /dev/null
+++ b/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