1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# frozen_string_literal: true
require 'spec_helper_acceptance'
describe 'concurrency, with file recursive purge' do
attr_reader :basedir
before(:all) do
@basedir = setup_test_directory
end
describe 'when run should still create concat file' do
let(:pp) do
<<-MANIFEST
file { '#{basedir}/bar':
ensure => directory,
purge => true,
recurse => true,
}
concat { "foobar":
ensure => 'present',
path => '#{basedir}/bar/foobar',
}
concat::fragment { 'foo':
target => 'foobar',
content => 'foo',
}
MANIFEST
end
it 'applies the manifest twice with no stderr' do
idempotent_apply(pp)
expect(file("#{basedir}/bar/foobar")).to be_file
expect(file("#{basedir}/bar/foobar").content).to match 'foo'
end
end
end
|