skip POD coverage tests
authorIvan Kohler <ivan@freeside.biz>
Mon, 5 Nov 2012 23:21:24 +0000 (15:21 -0800)
committerIvan Kohler <ivan@freeside.biz>
Mon, 5 Nov 2012 23:21:24 +0000 (15:21 -0800)
Changes
t/pod-coverage.t

diff --git a/Changes b/Changes
index 39f93f3..0d9a7d7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,5 +3,5 @@ Revision history for Geo-EZLocate
 0.01    Mon Nov  5 15:12:56 PST 2012
         - (Mark) First version, released on an unsuspecting world.
         - (Ivan) Declare dependancies on Class::Std::Fast::Storable and
-          SOAP::WSDL
+          SOAP::WSDL, skip POD coverage tests
 
index fc40a57..6104464 100644 (file)
@@ -2,6 +2,10 @@ use strict;
 use warnings;
 use Test::More;
 
+unless ( $ENV{RELEASE_TESTING} ) {
+    plan( skip_all => "POD coverage tests not required for installation" );
+}
+
 # Ensure a recent version of Test::Pod::Coverage
 my $min_tpc = 1.08;
 eval "use Test::Pod::Coverage $min_tpc";