|
plan skip_all => 'set TEST_POD to enable this test (developer only!)' unless $ENV {TEST_POD} || $ENV {TEST_ALL};
plan skip_all => 'Test::Pod::Coverage 1.04+ required for this test!' unless eval 'use Test::Pod::Coverage 1.04; 1' ;
my @await = (
qw(AWAIT_CHAIN_CANCEL AWAIT_CLONE AWAIT_DONE AWAIT_FAIL AWAIT_GET AWAIT_IS_CANCELLED AWAIT_IS_READY AWAIT_NEW_DONE) ,
qw(AWAIT_NEW_FAIL AWAIT_ON_CANCEL AWAIT_ON_READY AWAIT_WAIT)
);
my @base_utils = ( qw(class_to_path monkey_patch) );
all_pod_coverage_ok({ also_private => [ 'BUILD_DYNAMIC' , @await , @base_utils , 'spurt' ]});
|