diff --git a/spec/acceptance/warnings_spec.rb b/spec/acceptance/warnings_spec.rb index 89b3c3c..4ad7a97 100644 --- a/spec/acceptance/warnings_spec.rb +++ b/spec/acceptance/warnings_spec.rb @@ -1,61 +1,61 @@ require 'spec_helper_acceptance' describe 'warnings' do basedir = default.tmpdir('concat') shared_examples 'has_warning' do |pp, w| it 'applies the manifest twice with a stderr regex' do expect(apply_manifest(pp, :catch_failures => true).stderr).to match(/#{Regexp.escape(w)}/m) expect(apply_manifest(pp, :catch_changes => true).stderr).to match(/#{Regexp.escape(w)}/m) end end context 'concat force parameter deprecation' do pp = <<-EOS concat { '#{basedir}/file': force => false, } concat::fragment { 'foo': target => '#{basedir}/file', content => 'bar', } EOS w = 'The $force parameter to concat is deprecated and has no effect.' it_behaves_like 'has_warning', pp, w end context 'concat::fragment ensure parameter deprecation' do context 'target file exists' do pp = <<-EOS concat { '#{basedir}/file': } concat::fragment { 'foo': target => '#{basedir}/file', ensure => false, content => 'bar', } EOS w = 'The $ensure parameter to concat::fragment is deprecated and has no effect.' it_behaves_like 'has_warning', pp, w end end context 'concat::fragment target not found' do context 'target not found' do pp = <<-EOS concat { 'file': path => '#{basedir}/file', } concat::fragment { 'foo': - target => '#{basedir}/file', + target => '#{basedir}/bar', content => 'bar', } EOS w = 'not found in the catalog' it_behaves_like 'has_warning', pp, w end end end