New versions of t/pod.t and t/pod-coverage.t

petdance on 2004-07-20T15:37:14

For those of you using Test::Pod and Test::Pod::Coverage, you may want these updated versions of t/pod.t and t/pod-coverage.t to put in your modules. They are part of my plan to get the world to use taint by default.

t/pod.t #!perl -T

use Test::More; eval "use Test::Pod 1.14"; plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; all_pod_files_ok();


t/pod-coverage.t #!perl -T

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();


WOHOO!

jonasbn on 2004-07-23T13:53:17

I have just updated the tests in Module::Template::Setup

Thanks for the updates and keep up the good work...

Re:WOHOO!

petdance on 2004-07-23T13:59:20

They're really not any more featureful, other than having taint checking on. It's part of my campaign to bring tainting to the forefront of the public mind.

Re:WOHOO!

jonasbn on 2004-07-24T08:39:47

Well they look a bit more pretty :)