diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 3 | ||||
-rw-r--r-- | t/pod-coverage.t | 4 |
3 files changed, 8 insertions, 2 deletions
@@ -2,5 +2,6 @@ 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 dependancy on Class::Std::Fast::Storable + - (Ivan) Declare dependancies on Class::Std::Fast::Storable and + SOAP::WSDL, skip POD coverage tests diff --git a/Makefile.PL b/Makefile.PL index c47da17..e3dedce 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,8 +13,9 @@ WriteMakefile( : ()), PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, + 'Test::More' => 0, 'Class::Std::Fast::Storable' => 0, + 'SOAP::WSDL' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Geo-EZLocate-*' }, 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"; |