1 require 'spec_helper_acceptance'
3 describe 'symbolic name' do
4 basedir = default.tmpdir('concat')
6 concat { 'not_abs_path':
7 path => '#{basedir}/file',
10 concat::fragment { '1':
11 target => 'not_abs_path',
16 concat::fragment { '2':
17 target => 'not_abs_path',
23 it 'applies the manifest twice with no stderr' do
24 apply_manifest(pp, :catch_failures => true)
25 apply_manifest(pp, :catch_changes => true)
28 describe file("#{basedir}/file") do