1
2BEGIN {
3  unless ($ENV{RELEASE_TESTING}) {
4    require Test::More;
5    Test::More::plan(skip_all => 'these tests are for release candidate testing');
6  }
7}
8
9use strict;
10use warnings;
11
12use Test::More 0.88;
13
14eval "use Test::Pod::Coverage 1.04";
15plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
16    if $@;
17
18all_pod_coverage_ok(
19    {
20        trustme =>
21            [qr/^(?:format_duration|parse_duration|local_carp|local_croak)$/]
22    }
23);
24