Re: Pod::Coverage random silliness

2001-08-29 Thread Richard Clamp
On Wed, Aug 29, 2001 at 10:46:15AM +0100, Richard Clamp wrote: > Oddly Skud's script now segfaults under 5.6.1 while requiring the > second module it checks. (on my box this is Archive::Tar, after > Algorithm::MarkovChain) It didn't before so it's either something that > Pod::Find does or I subtly

Re: Pod::Coverage random silliness

2001-08-29 Thread Kirrily Robert
In perl.qa, you wrote: >On Tue, Aug 28, 2001 at 07:56:30PM -0400, Kirrily 'Skud' Robert wrote: >> This script... > >Nifty, mind if I assimilate it as an example script? Not at all. Credit as Kirrily "Skud" Robert <[EMAIL PROTECTED]> please. K. -- Kirrily 'Skud' Robert - [EMAIL PROTECTED] - h

Re: Pod::Coverage random silliness

2001-08-29 Thread Richard Clamp
On Tue, Aug 28, 2001 at 08:57:45PM -0400, Michael G Schwern wrote: > On Tue, Aug 28, 2001 at 07:56:30PM -0400, Kirrily 'Skud' Robert wrote: > > Term::ReadKey 0% > > This might be helped by doing: > > --- Coverage.orig Tue Aug 28 20:39:04 2001 > +++ lib/Pod/Coverage.pm

Re: Pod::Coverage random silliness

2001-08-29 Thread Richard Clamp
On Tue, Aug 28, 2001 at 07:56:30PM -0400, Kirrily 'Skud' Robert wrote: > This script... Nifty, mind if I assimilate it as an example script? Sadly the hacking I did this morning makes it explode into bits, but that's definitely my bad. More on that in a second. -- Richard Clamp <[EMAIL PROTEC

Re: Pod::Coverage random silliness

2001-08-28 Thread Michael G Schwern
On Tue, Aug 28, 2001 at 07:56:30PM -0400, Kirrily 'Skud' Robert wrote: > Checking POD coverage... > Test::Simple 33% * > Test::Harness 33% * That's actually correct, as there are only three public-looking functions in Test::Simple.

Pod::Coverage random silliness

2001-08-28 Thread Kirrily 'Skud' Robert
This script... #!/usr/bin/perl -w use strict; use Pod::Coverage; use ExtUtils::Installed; my $m = ExtUtils::Installed->new; my @modules = $m->modules(); print "Checking POD coverage...\n"; my %coverage; foreach my $mod (@modules) { my $pc = new Pod::Coverage package => $mod; $coverag