From: Jay Kuri Date: Mon, 27 Jul 2009 15:22:52 +0000 (-0600) Subject: fixing Makefile.PL and tweaking pod-coverage to not complain about X-Git-Tag: 0.02~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ec9b091eba1ce658f4cb1e612e7b7b54674f58ce;p=catagits%2FCatalyst-Authentication-Realm-Adaptor.git fixing Makefile.PL and tweaking pod-coverage to not complain about the two functions in the realm. --- diff --git a/Makefile.PL b/Makefile.PL index 94803ab..542d99f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -17,3 +17,5 @@ requires ( ); test_requires ('Test::More' => 0.42); + +WriteAll; \ No newline at end of file diff --git a/t/pod-coverage.t b/t/pod-coverage.t index fc40a57..3636c6b 100644 --- a/t/pod-coverage.t +++ b/t/pod-coverage.t @@ -15,4 +15,4 @@ eval "use Pod::Coverage $min_pc"; plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@; -all_pod_coverage_ok(); +all_pod_coverage_ok({ also_private => [ qr/^(find_user|authenticate)$/ ], });