14 lines
403 B
Raku
14 lines
403 B
Raku
#!/usr/bin/env perl
|
|
use Test::Most;
|
|
|
|
my $min_tpc = 1.08;
|
|
eval("use Test::Pod::Coverage $min_tpc");
|
|
plan( 'skip_all' => "Test::Pod::Coverage $min_tpc required for testing POD coverage" ) if $@;
|
|
|
|
my $min_pc = 0.18;
|
|
eval("use Pod::Coverage $min_pc");
|
|
plan( 'skip_all' => "Pod::Coverage $min_pc required for testing POD coverage" ) if $@;
|
|
|
|
all_pod_coverage_ok( { 'trustme' => ['BUILD'] } );
|
|
done_testing();
|