X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fsource_spec.rb;h=583c6190d4689454ec5f95162a2363f4f5662037;hb=1a294a83fbbd350c2ad32ea8c275184c74280630;hp=110e8c21b6b5dad446fdb00d4829dea47e4df63e;hpb=669f5b51fb429fb29e0b5698fa4dadd74ac74cfb;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/source_spec.rb b/spec/defines/source_spec.rb index 110e8c2..583c619 100644 --- a/spec/defines/source_spec.rb +++ b/spec/defines/source_spec.rb @@ -22,7 +22,7 @@ describe 'apt::source', :type => :define do [{}, { - :location => 'somewhere', + :location => 'http://example.com', :release => 'precise', :repos => 'security', :include_src => false, @@ -39,7 +39,7 @@ describe 'apt::source', :type => :define do }, { :ensure => 'absent', - :location => 'somewhere', + :location => 'http://example.com', :release => 'precise', :repos => 'security', } @@ -84,12 +84,12 @@ describe 'apt::source', :type => :define do it { if param_hash[:pin] - should contain_apt__pin(param_hash[:release]).with({ + should contain_apt__pin(title).with({ "priority" => param_hash[:pin], "before" => "File[#{title}.list]" }) else - should_not contain_apt__pin(param_hash[:release]).with({ + should_not contain_apt__pin(title).with({ "priority" => param_hash[:pin], "before" => "File[#{title}.list]" })