The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use Test::More;
eval "use Test::Pod::Coverage 1.00";
if ( $@ ) {
    plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage";
} else {
    my @modules = grep { $_ ne "WebService::Etsy::Methods" } all_modules();
    plan tests => scalar @modules;
    for ( @modules ) {
        pod_coverage_ok( $_, { also_private => [ qr/^stringify$/, qr/^array$/ ] } );
    }
}