diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-29 10:30:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-29 10:30:05 +0000 |
commit | c176c0147dbd70bb78673068520e411c1fb5745c (patch) | |
tree | f5b8df8b4761b6d771bd95e53fe2dca098f49998 /lib | |
parent | 4916df6750fdef81500cd9a73ec1c1a878290172 (diff) | |
download | perl-c176c0147dbd70bb78673068520e411c1fb5745c.tar.gz |
There is no skip() since we are not using Test*.
p4raw-id: //depot/perl@20294
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CPAN/t/signature.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CPAN/t/signature.t b/lib/CPAN/t/signature.t index 7e62c4d157..cf81f88800 100644 --- a/lib/CPAN/t/signature.t +++ b/lib/CPAN/t/signature.t @@ -4,8 +4,7 @@ use strict; print "1..1\n"; if (!eval { require Module::Signature; 1 }) { - skip("Next time around, consider install Module::Signature, ". - "so you can verify the integrity of this distribution.", 1); + print "ok 1 # skip - no Module::Signature found\n"; } elsif (!eval { require Socket; Socket::inet_aton('pgp.mit.edu') }) { print "ok 1 # skip - Cannot connect to the keyserver"; |