in reply to Re: Skipping packages in Pod::Coverage tests
in thread Skipping packages in Pod::Coverage tests

thanks!
  • Comment on Re^2: Skipping packages in Pod::Coverage tests

Replies are listed 'Best First'.
Re^3: Skipping packages in Pod::Coverage tests
by Anonymous Monk on Jun 21, 2009 at 11:52 UTC
    Here's update, based on Module::New
    use 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};
    The idea is that only module developers would be interested in pod/coverage tests