The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;

eval "use Test::Pod";

if ($@) {
    print "1..0 # Skip Test::Pod not installed", $/;
    exit;
} 
 
my @PODS = qw#../blib#;

all_pod_files_ok(all_pod_files(@PODS));