summaryrefslogtreecommitdiff
path: root/spec/defines/init_spec.rb
blob: 038bde27545ef56939bdcb2ff0d73f3427eaccff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe 'concat' do
#  basedir = '/var/lib/puppet/concat'
  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