Description: Replace pod_ok by pod_file_ok and scan the good dir
Author: Xavier Guimard <x.guimard@free.fr>
Bug: https://rt.cpan.org/Ticket/Display.html?id=82517
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=82517
Last-Update: 2013-01-06

--- 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);
   }
 }
