X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fsource_spec.rb;h=9a8d4a764e2ebe970646bbfaa0e5a479ec101f3e;hb=3bcbd1557b4ee0c964cc2dbbc936af00b0ea1316;hp=f6c2e23425e35571b1666330bd19acac101462c1;hpb=fcb2ba57befedcd24ef33c07cc206158e903dfa3;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/source_spec.rb b/spec/defines/source_spec.rb index f6c2e23..9a8d4a7 100644 --- a/spec/defines/source_spec.rb +++ b/spec/defines/source_spec.rb @@ -145,6 +145,19 @@ describe 'apt::source' do end end + context 'with allow_insecure true' do + let :params do + { + location: 'hello.there', + allow_insecure: true, + } + end + + it { + is_expected.to contain_apt__setting('list-my_source').with(ensure: 'present').with_content(%r{# my_source\ndeb \[allow-insecure=yes\] hello.there jessie main\n}) + } + end + context 'with allow_unsigned true' do let :params do {