in reply to Re^2: Skipping packages in Pod::Coverage tests
in thread Skipping packages in Pod::Coverage tests
The idea is that only module developers would be interested in pod/coverage testsuse strict; use warnings; use Test::More; eval "use Test::Pod::Coverage 1.04"; plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_P +OD};
|
|---|