mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 00:59:07 +00:00
11 lines
260 B
Perl
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();
|