mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-02 09:31:15 +00:00
10 lines
256 B
Perl
10 lines
256 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();
|