view modules/concat/spec/acceptance/empty_spec.rb @ 36:37675581a273 puppet-3.6

Update Puppet module for Apache (pulls in concat module)
author IBBoard <dev@ibboard.co.uk>
date Sat, 14 Mar 2015 20:07:04 +0000
parents 956e484adc12
children
line wrap: on
line source

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