Date-Gregorian

 view release on metacpan or  search on metacpan

t/91_pod-coverage.t  view on Meta::CPAN

# Copyright (c) 2006-2019 by Martin Becker, Blaubeuren.
# This package is free software; you can distribute it and/or modify it
# under the terms of the Artistic License 2.0 (see LICENSE file).

# Before 'make install' is performed this script should be runnable with
# 'make test'. After 'make install' it should work as 'perl 91_pod-coverage.t'

# check for POD coverage

my $env_maint = 'MAINTAINER_OF_DATE_GREGORIAN';
if (!$ENV{$env_maint}) {
    print "1..0 # SKIP setenv $env_maint=1 to run these tests\n";
    exit 0;
}

eval "use Test::Pod::Coverage 0.08";
if ($@) {
   print
       "1..0 # SKIP ",
       "Test::Pod::Coverage 0.08 required for testing POD coverage\n";
   exit 0;
}

all_pod_coverage_ok();

__END__



( run in 0.789 second using v1.01-cache-2.11-cpan-f56aa216473 )