module-concat/spec/acceptance/empty_spec.rb

24 lines
564 B
Ruby
Raw Normal View History

require 'spec_helper_acceptance'
2013-08-08 17:44:31 +02:00
describe 'concat force empty parameter' do
basedir = default.tmpdir('concat')
2013-08-08 17:44:31 +02:00
context 'should run successfully' do
2013-11-14 04:28:27 +01:00
pp = <<-EOS
concat { '#{basedir}/file':
2013-08-08 17:44:31 +02:00
mode => '0644',
force => true,
}
2013-11-14 04:28:27 +01:00
EOS
2013-08-08 17:44:31 +02: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
describe file("#{basedir}/file") do
2013-08-08 17:44:31 +02:00
it { should be_file }
its(:content) { should_not match /1\n2/ }
2013-08-08 17:44:31 +02:00
end
end
end