Date-Gregorian
view release on metacpan or search on metacpan
# 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 90_pod.t'
# check whether POD parses without errors or warnings
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 1.00";
if ($@) {
print "1..0 # SKIP Test::Pod 1.00 required for testing POD\n";
exit 0;
}
all_pod_files_ok();
t/91_pod-coverage.t view on Meta::CPAN
# 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;
}
t/95_versions.t view on Meta::CPAN
$| = 1;
undef $/;
my $README = 'README';
my $META_YML = 'META.yml';
my $distname = 'Date-Gregorian';
my $modname = 'Date::Gregorian';
my $env_maint = 'MAINTAINER_OF_DATE_GREGORIAN';
if (!$ENV{$env_maint}) {
skip_all "setenv $env_maint=1 to run these tests";
}
use_or_bail 'File::Spec';
use_or_bail 'File::Basename';
use_or_bail 'FindBin';
my $distroot = '.' eq $FindBin::Bin? '..': dirname($FindBin::Bin);
print "1..9\n";
( run in 0.410 second using v1.01-cache-2.11-cpan-3989ada0592 )