Bootstrap test fixes.
[catagits/Gitalist.git] / t / author / pod.t
index 3c6d16f..6b914af 100644 (file)
@@ -1,8 +1,16 @@
 #!/usr/bin/env perl
+use FindBin qw/$Bin/;
+BEGIN {
+    my $env = "$FindBin::Bin/../../script/env";
+    if (-r $env) {
+        do $env or die $@;
+    }
+}
+
 use strict;
 use warnings;
 use Test::More;
 
 use Test::Pod 1.14;
 
-all_pod_files_ok();
+all_pod_files_ok( all_pod_files('lib') );