We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a3ddc commit ca1d98aCopy full SHA for ca1d98a
spec/acceptance/apt_keyring_spec.rb
@@ -0,0 +1,19 @@
1
+# frozen_string_literal: true
2
+
3
+require 'spec_helper_acceptance'
4
5
+describe 'apt::keyring' do
6
+ context 'when using default values and source specified explicitly' do
7
+ keyring_pp = <<-MANIFEST
8
+ apt::keyring { 'puppetlabs-keyring.gpg':
9
+ source => 'https://apt.puppetlabs.com/keyring.gpg',
10
+ }
11
+ MANIFEST
12
13
+ it 'applies idempotently' do
14
+ retry_on_error_matching do
15
+ idempotent_apply(pp)
16
+ end
17
18
19
+end
0 commit comments