2014-01-15 20:16:49 +01:00
|
|
|
require 'spec_helper_acceptance'
|
2013-11-02 17:33:41 +01:00
|
|
|
|
|
|
|
describe 'symbolic name' do
|
2014-02-28 00:50:18 +01:00
|
|
|
basedir = default.tmpdir('concat')
|
2013-11-14 04:28:27 +01:00
|
|
|
pp = <<-EOS
|
2013-11-02 17:33:41 +01:00
|
|
|
concat { 'not_abs_path':
|
2014-02-27 23:52:53 +01:00
|
|
|
path => '#{basedir}/file',
|
2013-11-02 17:33:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '1':
|
|
|
|
target => 'not_abs_path',
|
|
|
|
content => '1',
|
|
|
|
order => '01',
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '2':
|
|
|
|
target => 'not_abs_path',
|
|
|
|
content => '2',
|
|
|
|
order => '02',
|
|
|
|
}
|
2013-11-14 04:28:27 +01:00
|
|
|
EOS
|
2013-11-02 17:33:41 +01:00
|
|
|
|
2014-01-15 20:16:49 +01:00
|
|
|
it 'applies the manifest twice with no stderr' do
|
2014-09-08 21:01:30 +02:00
|
|
|
apply_manifest(pp, :catch_failures => true)
|
|
|
|
apply_manifest(pp, :catch_changes => true)
|
2013-11-02 17:33:41 +01:00
|
|
|
end
|
|
|
|
|
2014-02-27 23:52:53 +01:00
|
|
|
describe file("#{basedir}/file") do
|
2013-11-02 17:33:41 +01:00
|
|
|
it { should be_file }
|
2015-02-09 23:42:34 +01:00
|
|
|
its(:content) {
|
|
|
|
should match '1'
|
|
|
|
should match '2'
|
|
|
|
}
|
2013-11-02 17:33:41 +01:00
|
|
|
end
|
|
|
|
end
|