Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Pod CPAN distribution.

Report information
The Basics
Id: 4302
Status: resolved
Priority: 0/
Queue: Test-Pod

People
Owner: andy [...] petdance.com
Requestors: andy [...] petdance.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Write an all-in-one function for Test::Pod
Write an all-in-one function for Test::Pod that does this: use File::Spec; use File::Find; use strict; eval "use Test::Pod 0.95"; plan skip_all => "Test::Pod v0.95 required for testing POD" if $@; my @files; my $blib = File::Spec->catfile(qw(blib lib)); find( sub {push @files, $File::Find::name if /\.p(l|m|od)$/}, $blib); plan tests => scalar @files; Test::Pod::pod_file_ok($_) foreach @files;