Subject: | Please update Test::Pod test |
Hi,
there are 2 errors in t/99-pod.t :
--- a/t/99pod.t
+++ b/t/99pod.t
@@ -34,13 +34,13 @@
find(
sub { push @files, $File::Find::name if m!\.p(m|od|l)$! },
- File::Spec->catfile(qw(.. blib lib))
+ File::Spec->catfile(qw(blib lib))
);
plan(tests => scalar @files);
foreach my $file (@files) {
# use the older Test::Pod interface for maximum back compat
- pod_ok($file);
+ pod_file_ok($file);
}
}