Author: turnstep
Date: Fri Mar 16 07:51:03 2007
New Revision: 9265
Modified:
DBD-Pg/trunk/t/00-signature.t
Log:
Allow bypass for development.
Modified: DBD-Pg/trunk/t/00-signature.t
==============================================================================
--- DBD-Pg/trunk/t/00-signature.t (original)
+++ DBD-Pg/trunk/t/00-signature.t Fri Mar 16 07:51:03 2007
@@ -6,7 +6,10 @@
use strict;
$|=1;
-if (!eval { require Module::Signature; 1 }) {
+if ($ENV{DBDPG_SKIP_SIGNATURE_TEST}) {
+ plan skip_all => 'Skipping signature test';
+}
+elsif (!eval { require Module::Signature; 1 }) {
plan skip_all =>
"Please install Module::Signature so that you can verify ".
"the integrity of this and other distributions.";