8 eval "use Test::Pod::Coverage 1.04";
9 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
11 # This is a stripped down version of all_pod_coverage_ok which lets us
12 # vary the trustme parameter per module.
13 my @modules = all_modules();
14 plan tests => scalar @modules;
17 'Moose' => ['make_immutable'],
18 'Moose::Meta::Method::Constructor' =>
19 [qw( initialize_body intialize_body)],
20 'Moose::Meta::Method::Destructor' => ['initialize_body'],
22 qw( after around augment before extends has inner make_immutable override super with )
26 for my $module ( sort @modules ) {
28 if ( $trustme{$module} ) {
29 my $methods = join '|', @{ $trustme{$module} };
30 $trustme = [qr/$methods/];
34 $module, { trustme => $trustme },
35 "Pod coverage for $module"