clusterssh/t/pod-coverage.t
2024-10-17 21:12:23 +01:00

11 lines
260 B
Perl

use strict;
use warnings;
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage"
if $@;
plan skip_all => "Skipping coverage tests" unless $ENV{COVERAGE};
all_pod_coverage_ok();