From cf22fc848cecd5918b6b33aad50f34889baceb17 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 22 Sep 2010 13:53:44 -0700 Subject: [PATCH] Check all the module namespaces for POD. --- t/POD.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/POD.t b/t/POD.t index 9bbb6a2d2..fda8102d6 100644 --- a/t/POD.t +++ b/t/POD.t @@ -21,7 +21,7 @@ my $threshold = $ENV{POD_COVERAGE} == 2 ? 0.9999 : 0; my @modules = (); -find(\&countModules, File::Spec->catdir( WebGUI::Test->lib, 'WebGUI' ) ); +find(\&countModules, WebGUI::Test->lib ); my $moduleCount = scalar(@modules); plan tests => $moduleCount; use Data::Dumper;