summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-07-31 11:28:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-31 11:28:58 +0000
commitf95c1422fa7828234ba339bc73e753677504f145 (patch)
tree4f4d47fbc5de9dfbd92dcaaabae0912e6ec836c8
parent6a7bdc5005c252a20f424cac9c83b7df16348f9b (diff)
downloadperl-f95c1422fa7828234ba339bc73e753677504f145.tar.gz
This test is pretty useless as it stands.
p4raw-id: //depot/perl@20377
-rw-r--r--MANIFEST1
-rw-r--r--lib/CPAN/t/signature.t16
2 files changed, 0 insertions, 17 deletions
diff --git a/MANIFEST b/MANIFEST
index 4951fa67f0..cc2b4f5216 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1052,7 +1052,6 @@ lib/CPAN/Nox.pm Runs CPAN while avoiding compiled extensions
lib/CPAN/t/loadme.t See if CPAN the module works
lib/CPAN/t/mirroredby.t See if CPAN::Mirrored::By works
lib/CPAN/t/Nox.t See if CPAN::Nox works
-lib/CPAN/t/signature.t See if CPAN signatures work
lib/CPAN/t/vcmp.t See if CPAN the module works
lib/ctime.pl A ctime workalike
lib/Cwd.pm Various cwd routines (getcwd, fastcwd, chdir)
diff --git a/lib/CPAN/t/signature.t b/lib/CPAN/t/signature.t
deleted file mode 100644
index cf81f88800..0000000000
--- a/lib/CPAN/t/signature.t
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- mode: cperl -*-
-
-use strict;
-print "1..1\n";
-
-if (!eval { require Module::Signature; 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";
-}
-else {
- (Module::Signature::verify() == Module::Signature::SIGNATURE_OK())
- or print "not ";
- print "ok 1 # Valid signature\n";
-}