X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fsource_spec.rb;h=8ca7f8e20308f763910b800e60c6c41db9a32d72;hb=83ae566b084c88e2778ea0220c89a2ec07b7ba4e;hp=ae47ccf91e6e5dc825b54afaa26b3c0a7cf31a82;hpb=646b407027cd2e05c2852198ddf79fff627788ac;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/source_spec.rb b/spec/defines/source_spec.rb index ae47ccf..8ca7f8e 100644 --- a/spec/defines/source_spec.rb +++ b/spec/defines/source_spec.rb @@ -29,7 +29,7 @@ describe 'apt::source', :type => :define do 'owner' => 'root', 'group' => 'root', 'mode' => '0644', - }).with_content(/#file generated by puppet\n# my_source\ndeb-src wheezy main\n/) + }).with_content(/# my_source\ndeb-src wheezy main\n/) } end @@ -55,7 +55,7 @@ describe 'apt::source', :type => :define do 'key_source' => 'http://apt.puppetlabs.com/pubkey.gpg', 'pin' => '10', 'architecture' => 'x86_64', - 'trusted' => true, + 'trusted_source' => true, } end @@ -65,7 +65,7 @@ describe 'apt::source', :type => :define do 'owner' => 'root', 'group' => 'root', 'mode' => '0644', - }).with_content(/#file generated by puppet\n# foo\ndeb \[arch=x86_64 trusted=yes\] http:\/\/debian\.mirror\.iweb\.ca\/debian\/ sid testing\n/).without_content(/deb-src/) + }).with_content(/# foo\ndeb \[arch=x86_64 trusted=yes\] http:\/\/debian\.mirror\.iweb\.ca\/debian\/ sid testing\n/).without_content(/deb-src/) } it { is_expected.to contain_apt__pin('my_source').that_comes_before('File[my_source.list]').with({ @@ -94,7 +94,7 @@ describe 'apt::source', :type => :define do } end - context 'trusted true' do + context 'trusted_source true' do let :facts do { :lsbdistid => 'Debian', @@ -104,8 +104,8 @@ describe 'apt::source', :type => :define do end let :params do { - 'include_src' => false, - 'trusted' => true, + 'include_src' => false, + 'trusted_source' => true, } end @@ -115,7 +115,7 @@ describe 'apt::source', :type => :define do 'owner' => 'root', 'group' => 'root', 'mode' => '0644', - }).with_content(/#file generated by puppet\n# my_source\ndeb \[trusted=yes\] wheezy main\n/) + }).with_content(/# my_source\ndeb \[trusted=yes\] wheezy main\n/) } end @@ -140,7 +140,7 @@ describe 'apt::source', :type => :define do 'owner' => 'root', 'group' => 'root', 'mode' => '0644', - }).with_content(/#file generated by puppet\n# my_source\ndeb-src \[arch=x86_64 \] wheezy main\n/) + }).with_content(/# my_source\ndeb-src \[arch=x86_64 \] wheezy main\n/) } end