Blame t/z_pod-coverage.t

Packit 745572
# -*- perl -*-
Packit 745572
use strict;
Packit 745572
use warnings;
Packit 745572
use Test::More;
Packit 745572
Packit 745572
BEGIN {
Packit 745572
  plan skip_all => 'done_testing requires Test::More 0.88' if Test::More->VERSION < 0.88;
Packit 745572
  plan skip_all => 'This test is only run for the module author'
Packit 745572
    unless -d '.git' || $ENV{IS_MAINTAINER};
Packit 745572
}
Packit 745572
eval "use Test::Pod::Coverage 1.04";
Packit 745572
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
Packit 745572
    if $@;
Packit 745572
Packit 745572
for (all_modules()) {
Packit 745572
  pod_coverage_ok($_) unless /Filter::decrypt/;
Packit 745572
}
Packit 745572
Packit 745572
done_testing;