From: Daniel Westermann-Clark Date: Sun, 2 Jul 2006 04:19:01 +0000 (+0000) Subject: 03podcoverage.t: all_modules is not exported until Test::Pod::Coverage 1.08, so use... X-Git-Tag: v0.07002~75^2~63 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=97fec99f26f9bb085051e0472b57cdf81e7fdfb1;p=dbsrgits%2FDBIx-Class.git 03podcoverage.t: all_modules is not exported until Test::Pod::Coverage 1.08, so use the full namespace --- diff --git a/t/03podcoverage.t b/t/03podcoverage.t index 77460de..8cb8c4f 100644 --- a/t/03podcoverage.t +++ b/t/03podcoverage.t @@ -4,7 +4,7 @@ eval "use Test::Pod::Coverage 1.04"; plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; -my @modules = sort { $a cmp $b } (all_modules()); +my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules()); plan tests => scalar(@modules); # Since this is about checking documentation, a little documentation