@@ -677,7 +677,7 @@ def apply_manifest_twice(manifest_pp)
677
677
678
678
describe 'content =>' do
679
679
context 'with puppetlabs gpg key' do
680
- it 'works ' do
680
+ it 'applies without error ' do
681
681
# Apply the manifest (Retry if timeout error is received from key pool)
682
682
retry_on_error_matching do
683
683
apply_manifest ( gpg_key_pp , catch_failures : true )
@@ -706,7 +706,7 @@ def apply_manifest_twice(manifest_pp)
706
706
707
707
describe 'server =>' do
708
708
context 'with hkp://pgp.mit.edu:80' do
709
- it 'works ' do
709
+ it 'applies without error ' do
710
710
retry_on_error_matching do
711
711
apply_manifest ( hkp_pool_pp , catch_failures : true )
712
712
end
@@ -718,7 +718,7 @@ def apply_manifest_twice(manifest_pp)
718
718
719
719
if hkps_protocol_supported
720
720
context 'with hkps://keyserver.ubuntu.com' do
721
- it 'works ' do
721
+ it 'applies without error ' do
722
722
retry_on_error_matching do
723
723
apply_manifest ( hkps_ubuntu_pp , catch_failures : true )
724
724
end
@@ -748,7 +748,7 @@ def apply_manifest_twice(manifest_pp)
748
748
749
749
describe 'source =>' do
750
750
context 'with http://' do
751
- it 'works ' do
751
+ it 'applies without error ' do
752
752
apply_manifest_twice ( http_works_pp )
753
753
run_shell ( PUPPETLABS_KEY_CHECK_COMMAND )
754
754
end
@@ -777,7 +777,7 @@ def apply_manifest_twice(manifest_pp)
777
777
run_shell ( "apt-key del #{ CENTOS_GPG_KEY_LONG_ID } " , expect_failures : true )
778
778
end
779
779
780
- it 'works ' do
780
+ it 'applies without error ' do
781
781
apply_manifest_twice ( ftp_works_pp )
782
782
run_shell ( CENTOS_KEY_CHECK_COMMAND )
783
783
end
@@ -796,7 +796,7 @@ def apply_manifest_twice(manifest_pp)
796
796
end
797
797
798
798
context 'with https://' do
799
- it 'works ' do
799
+ it 'applies without error ' do
800
800
apply_manifest_twice ( https_works_pp )
801
801
run_shell ( PUPPETLABS_KEY_CHECK_COMMAND )
802
802
end
@@ -834,7 +834,7 @@ def apply_manifest_twice(manifest_pp)
834
834
run_shell ( 'rm /tmp/puppetlabs-pubkey.gpg' )
835
835
end
836
836
837
- it 'works ' do
837
+ it 'applies without error ' do
838
838
apply_manifest_twice ( path_exists_pp )
839
839
run_shell ( PUPPETLABS_KEY_CHECK_COMMAND )
840
840
end
@@ -867,7 +867,7 @@ def apply_manifest_twice(manifest_pp)
867
867
868
868
describe 'options =>' do
869
869
context 'with debug' do
870
- it 'works ' do
870
+ it 'applies without error ' do
871
871
apply_manifest_twice ( debug_works_pp )
872
872
run_shell ( PUPPETLABS_KEY_CHECK_COMMAND )
873
873
end
@@ -876,13 +876,13 @@ def apply_manifest_twice(manifest_pp)
876
876
877
877
describe 'fingerprint validation against source/content' do
878
878
context 'with fingerprint in id matches fingerprint from remote key' do
879
- it 'works ' do
879
+ it 'applies without error ' do
880
880
apply_manifest_twice ( fingerprint_match_pp )
881
881
end
882
882
end
883
883
884
884
context 'with fingerprint in id does NOT match fingerprint from remote key' do
885
- it 'works ' do
885
+ it 'applies without error ' do
886
886
apply_manifest ( fingerprint_does_not_match_pp , expect_failures : true ) do |r |
887
887
expect ( r . stderr ) . to match ( %r{don't match} )
888
888
end
0 commit comments