From: Mischa POSLAWSKY Date: Sat, 31 May 2008 21:53:00 +0000 (+0000) Subject: treat custom exit() as private for now X-Git-Tag: 3.21~1 X-Git-Url: http://git.shiar.nl/perl/plp/.git/commitdiff_plain/88ea60f3e1177a230f2cc7e47250a7a5cd365663 treat custom exit() as private for now Do not require documentation coverage of PLP::Functions::exit, it's supposed to be a transparant replacement of CORE::exit. I'll probably move it outside of this module later (no side-effects to make it usable without PLP), but that's a seperate fix. --- diff --git a/t/93-podcover.t b/t/93-podcover.t index 6a61ac4..8f4cd9a 100644 --- a/t/93-podcover.t +++ b/t/93-podcover.t @@ -7,7 +7,7 @@ eval 'use Test::Pod::Coverage'; plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@; plan tests => 1; -pod_coverage_ok($_, {nonwhitespace => 1}, $_) for 'PLP::Functions'; +pod_coverage_ok($_, {nonwhitespace => 1, private => ['exit']}, $_) for 'PLP::Functions'; # Other modules can be assumed either private (Tie::*), # simple includes (Backend::* - generally only accessed by constructor),