From: Dave Rolsky Date: Sat, 24 May 2008 22:11:26 +0000 (+0000) Subject: add a trustme for intialize_body, rather than actually putting it in pod X-Git-Tag: 0_55~141 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a1813a8a181c76fa24939a8c663f6463c57c4a3e;p=gitmo%2FMoose.git add a trustme for intialize_body, rather than actually putting it in pod --- diff --git a/lib/Moose/Meta/Method/Constructor.pm b/lib/Moose/Meta/Method/Constructor.pm index e1e1032..d0ebad2 100644 --- a/lib/Moose/Meta/Method/Constructor.pm +++ b/lib/Moose/Meta/Method/Constructor.pm @@ -351,8 +351,6 @@ not particularly useful. =item B -=item B - =item B =item B diff --git a/t/pod_coverage.t b/t/pod_coverage.t index 7569358..dcedee4 100644 --- a/t/pod_coverage.t +++ b/t/pod_coverage.t @@ -8,4 +8,4 @@ use Test::More; eval "use Test::Pod::Coverage 1.04"; plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@; -all_pod_coverage_ok(); +all_pod_coverage_ok( { trustme => [ qr/intialize_body/ ] } );