Correct the incorrect quotes

This commit is contained in:
Hunter Haugen 2014-02-27 16:07:01 -08:00
parent 6c50f50aa0
commit 495619794e

View file

@ -6,7 +6,7 @@ describe 'replacement of' do
context 'should not succeed' do
before(:all) do
shell("mkdir -p #{basedir}")
shell('echo "file exists" > #{basedir}/file')
shell("echo 'file exists' > #{basedir}/file")
end
after(:all) do
shell("rm -rf #{basedir} #{default.puppet['vardir']}/concat")
@ -45,7 +45,7 @@ describe 'replacement of' do
context 'should succeed' do
before(:all) do
shell("mkdir -p #{basedir}")
shell("echo "file exists" > #{basedir}/file")
shell("echo 'file exists' > #{basedir}/file")
end
after(:all) do
shell("rm -rf #{basedir} #{default.puppet['vardir']}/concat")