Help for this page

Select Code to Download


  1. or download this
    PREREQ_PM => {
           'Test::More'          => 0,
           'Pod::Coverage'       => '0.18',
    ...
           'Test::Pod::Coverage' => '1.08',
           'Crypt::Rijndael'     => 0
    },
    
  2. or download this
    use strict;
    use warnings;
    use Test::More qw(no_plan);
    ...
    plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD co
    +verage"
      unless eval "use Test::Pod::Coverage 1.08";
    all_pod_coverage_ok();