#!/usr/bin/perl
use
strict;
"1..1\n"
;
if
(!-s
'SIGNATURE'
) {
"ok 1 # skip No signature file found\n"
;
}
"ok 1 # skip "
,
"Next time around, consider install Module::Signature, "
,
"so you can verify the integrity of this distribution.\n"
;
}
"ok 1 # skip Cannot connect to the keyserver\n"
;
}
else
{
(Module::Signature::verify() == Module::Signature::SIGNATURE_OK())
or
"not "
;
"ok 1 # Valid signature\n"
;
}
__END__
# vim: set syntax=perl :