]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
Removed duplicated test
authorEimhin Laverty <eimhin.laverty@puppet.com>
Mon, 22 Oct 2018 13:33:04 +0000 (14:33 +0100)
committerEimhin Laverty <eimhin.laverty@puppet.com>
Mon, 22 Oct 2018 13:38:23 +0000 (14:38 +0100)
spec/defines/source_spec.rb

index 38f5b9d2cd1f196d06863fe04ffe9300b46b9556..98efb32a4db6da07e27304ef7784bd9d2c40dc5f 100644 (file)
@@ -148,39 +148,8 @@ describe 'apt::source' do
                                                                                                                                                     source: 'http://apt.puppetlabs.com/pubkey.gpg')
       }
     end
-
-    context 'with simple key' do
-      let :params do
-        {
-          comment: 'foo',
-          location: 'http://debian.mirror.iweb.ca/debian/',
-          release: 'sid',
-          repos: 'testing',
-          key: GPG_KEY_ID,
-          pin: '10',
-          architecture: 'x86_64',
-          allow_unsigned: true,
-        }
-      end
-
-      it {
-        is_expected.to contain_apt__setting('list-my_source').with(ensure: 'present').with_content(%r{# foo\ndeb \[arch=x86_64 trusted=yes\] http://debian.mirror.iweb.ca/debian/ sid testing\n})
-                                                             .without_content(%r{deb-src})
-      }
-
-      it {
-        is_expected.to contain_apt__pin('my_source').that_comes_before('Apt::Setting[list-my_source]').with(ensure: 'present',
-                                                                                                            priority: '10',
-                                                                                                            origin: 'debian.mirror.iweb.ca')
-      }
-
-      it {
-        is_expected.to contain_apt__key("Add key: #{GPG_KEY_ID} from Apt::Source my_source").that_comes_before('Apt::Setting[list-my_source]').with(ensure: 'present',
-                                                                                                                                                    id: GPG_KEY_ID)
-      }
-    end
   end
-
+  
   context 'with allow_unsigned true' do
     let :facts do
       {