X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fbuilddep_spec.rb;h=41152d5c9ba11662e86c608a5157bc203bbc5507;hb=0f8152536724a29441923c1cb82282e8fa2951dc;hp=88cdf4fb6ef65d2372ce84b2abb964ba0f381312;hpb=dde7f4e8199b319500d5a4d48fded93db725d905;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/builddep_spec.rb b/spec/defines/builddep_spec.rb index 88cdf4f..41152d5 100644 --- a/spec/defines/builddep_spec.rb +++ b/spec/defines/builddep_spec.rb @@ -1,11 +1,11 @@ require 'spec_helper' describe 'apt::builddep', :type => :define do - let(:facts) { { :lsbdistid => 'Debian' } } + let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } } let(:title) { 'my_package' } describe "defaults" do - it { should contain_exec("apt-builddep-my_package").that_notifies('Exec[apt_update]').with({ + it { should contain_exec("apt-builddep-my_package").that_requires('Exec[apt_update]').with({ 'command' => "/usr/bin/apt-get -y --force-yes build-dep my_package", 'logoutput' => 'on_failure' })