X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Facceptance%2Fapt_builddep_spec.rb;h=1e35e4aa68d9530c16c0bbc559f520261cea0b5d;hb=b1a6d0863159d95c51501a56287785183249dce7;hp=b61fca29550196008fc31073eb55ae1e8ea5effb;hpb=661c6731d78f4008ace836a65953be59643a299b;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/acceptance/apt_builddep_spec.rb b/spec/acceptance/apt_builddep_spec.rb index b61fca2..1e35e4a 100644 --- a/spec/acceptance/apt_builddep_spec.rb +++ b/spec/acceptance/apt_builddep_spec.rb @@ -1,10 +1,10 @@ require 'spec_helper_acceptance' -describe 'apt::builddep' do +describe 'apt::builddep', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do context 'reset' do it 'removes packages' do - shell('apt-get -y remove glusterfs-server') + shell('apt-get -y remove znc') shell('apt-get -y remove g++') end end @@ -13,7 +13,7 @@ describe 'apt::builddep' do it 'should work with no errors' do pp = <<-EOS include '::apt' - apt::builddep { 'glusterfs-server': } + apt::builddep { 'znc': } EOS apply_manifest(pp, :catch_failures => true) @@ -28,7 +28,7 @@ describe 'apt::builddep' do context 'reset' do it 'removes packages' do - shell('apt-get -y remove glusterfs-server') + shell('apt-get -y remove znc') shell('apt-get -y remove g++') end end