The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
BEGIN {
        if ($ENV{PERL_CORE}) {
                chdir 't' if -d 't';
                @INC = '../lib';
        }
	eval "use Test::More";
	if ($@) {
		print "1..0 # Skipped: Test::More not installed\n";
		exit;
	}
}

eval "use Test::Pod::Coverage 0.08";
plan skip_all => "Test::Pod::Coverage 0.08 required for testing POD coverage" if $@;

my @privfcns = qw(
	Addfile 
	Hexdigest 
	B64digest 
	shaclose
	shadump 
	shadup 
	shaload 
	shaopen 
	sharewind 
	shawrite
);

all_pod_coverage_ok( { also_private => \@privfcns } );