d45f1e60d7
Solaris doesn't support multi-line grep. More fixes for install on windows.
44 lines
1.1 KiB
Ruby
44 lines
1.1 KiB
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'quoted paths' do
|
|
basedir = default.tmpdir('concat')
|
|
|
|
before(:all) do
|
|
pp = <<-EOS
|
|
file { '#{basedir}':
|
|
ensure => directory,
|
|
}
|
|
file { '#{basedir}/concat test':
|
|
ensure => directory,
|
|
}
|
|
EOS
|
|
apply_manifest(pp)
|
|
end
|
|
|
|
context 'path with blanks' do
|
|
pp = <<-EOS
|
|
concat { '#{basedir}/concat test/foo':
|
|
}
|
|
concat::fragment { '1':
|
|
target => '#{basedir}/concat test/foo',
|
|
content => 'string1',
|
|
}
|
|
concat::fragment { '2':
|
|
target => '#{basedir}/concat test/foo',
|
|
content => 'string2',
|
|
}
|
|
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}/concat test/foo") do
|
|
it { should be_file }
|
|
it("should contain string1\nstring2", :unless => (fact('osfamily') == 'Solaris')) {
|
|
should contain "string1\nstring2"
|
|
}
|
|
end
|
|
end
|
|
end
|