perl: Ignore internal_* functions in POD coverage test.

This updates commit 1d999540bd.
This commit is contained in:
Richard W.M. Jones
2011-01-29 07:01:06 +00:00
parent b6c70b3f50
commit 6975e87153

View File

@@ -23,5 +23,6 @@ eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD" if $@;
all_pod_coverage_ok ({
also_private => [ qr/^test0.*/,
qr/^debug.*/ ]
qr/^debug.*/,
qr/^internal.*/ ]
});