2014-01-15 20:16:49 +01:00
|
|
|
require 'spec_helper_acceptance'
|
2013-08-08 17:44:31 +02:00
|
|
|
|
2014-01-15 20:16:49 +01:00
|
|
|
describe 'concat force empty parameter' do
|
2013-08-08 17:44:31 +02:00
|
|
|
context 'should run successfully' do
|
2013-11-14 04:28:27 +01:00
|
|
|
pp = <<-EOS
|
2013-11-06 04:40:03 +01:00
|
|
|
concat { '/tmp/concat/file':
|
2013-08-08 17:44:31 +02:00
|
|
|
owner => root,
|
|
|
|
group => root,
|
|
|
|
mode => '0644',
|
|
|
|
force => true,
|
|
|
|
}
|
2013-11-14 04:28:27 +01:00
|
|
|
EOS
|
2013-08-08 17:44:31 +02: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-08-08 17:44:31 +02:00
|
|
|
end
|
|
|
|
|
2013-11-06 04:40:03 +01:00
|
|
|
describe file('/tmp/concat/file') do
|
2013-08-08 17:44:31 +02:00
|
|
|
it { should be_file }
|
|
|
|
it { should_not contain '1\n2' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|