diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-11-05 15:21:24 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-11-05 15:21:24 -0800 |
commit | fd2615fb2f72bb8892a1cdb8764898ed96e7d354 (patch) | |
tree | 9aa822e63261e26a494cd84dcc5f6baef29bf03c | |
parent | f2260f5ea50078bf24cb8761d0110d136578fb24 (diff) |
skip POD coverage tests
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | t/pod-coverage.t | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -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 diff --git a/t/pod-coverage.t b/t/pod-coverage.t index fc40a57..6104464 100644 --- a/t/pod-coverage.t +++ b/t/pod-coverage.t @@ -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"; |