in reply to My first module is failing on CPAN
PREREQ_PM => { 'Test::More' => 0, 'Pod::Coverage' => '0.18', 'Test::Pod' => '1.22', 'Test::Pod::Coverage' => '1.08', 'Crypt::Rijndael' => 0 },
Then change the pod-coverage.t to:
Updated: Changed "plan skip_all".use strict; use warnings; use Test::More qw(no_plan); use Test::Pod::Coverage 1.08; 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();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: My first module is failing on CPAN
by andreas1234567 (Vicar) on Jul 01, 2008 at 06:20 UTC |