Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
AFter a nights sleep, this works... for my $module (glob("*.pm")) { $module =~ s/.pm$//; pod_coverage_ok( $module, "$module test" ); } I still do not understand the parms. I think it can give me the audit check I want but I am not sure. For example how do I ensure that there is

CGI's

2006-06-03 Thread Tom Allison
what's the difference between SpeedyCGI CGI::Speedy CGI::Fast -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
On Sat, 2006-06-03 at 06:25 -0700, Peter Scott wrote: > On Sat, 03 Jun 2006 20:53:35 +1000, Ken Foskey wrote: > > I cannot figure out the how to make this work, this succeeds with no > > documentation in the modules. > > > > #!/usr/bin/perl > > > > # Ensure POD is set up correctly. > > > > use

Re: Test::Pod::Coverage

2006-06-03 Thread Peter Scott
On Sat, 03 Jun 2006 20:53:35 +1000, Ken Foskey wrote: > I cannot figure out the how to make this work, this succeeds with no > documentation in the modules. > > #!/usr/bin/perl > > # Ensure POD is set up correctly. > > use Test::More; > eval "use Test::Pod 1.00"; > plan skip_all => "Test::Pod

Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
On Sat, 2006-06-03 at 08:15 -0400, Ricardo SIGNES wrote: > You probably want: > > all_pod_files_ok(glob("*.pm")); > > I've almost never needed to use anything more than: > > all_pod_files_ok(): > > That finds your perl modules in lib or blib, which is where they should be in > a > standard

Re: Test::Pod::Coverage

2006-06-03 Thread Ricardo SIGNES
* Ken Foskey <[EMAIL PROTECTED]> [2006-06-03T06:53:35] > #!/usr/bin/perl > # Ensure POD is set up correctly. > use Test::More; > eval "use Test::Pod 1.00"; > plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; > all_pod_files_ok( map( glob( "*.pm" ), s/.pm$//) ); Your map doesn't ma

Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
I cannot figure out the how to make this work, this succeeds with no documentation in the modules. #!/usr/bin/perl # Ensure POD is set up correctly. use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; all_pod_files_ok( map( glob( "*.pm"