Sha256: d46c1d180f18ea35396ebed4dccca4bf83f164bf63c4a0281889a7da8866de4e
Contents?: true
Size: 564 Bytes
Versions: 6
Compression:
Stored size: 564 Bytes
Contents
require 'spec_helper_acceptance' describe 'concat force empty parameter' do basedir = default.tmpdir('concat') context 'should run successfully' do pp = <<-EOS concat { '#{basedir}/file': mode => '0644', force => true, } EOS it 'applies the manifest twice with no stderr' do apply_manifest(pp, :catch_failures => true) apply_manifest(pp, :catch_changes => true) end describe file("#{basedir}/file") do it { should be_file } its(:content) { should_not match /1\n2/ } end end end
Version data entries
6 entries across 6 versions & 1 rubygems