[PATCH] Test-Simple-0.01 (Re: ANNOUNCE: Test::Simple 0.11)

2001-08-14 Thread Tatsuhiko Miyagawa
On Sat, 11 Aug 2001 23:15:30 -0400 Michael G Schwern [EMAIL PROTECTED] wrote: Announcing Test::Simple 0.11. The big thing here is you can have tests like: is( $foo, undef ); and it won't spit at you for using uninitialized values. 0.11 Sat Aug 11 23:05:19 EDT 2001 * Will no longer

ANNOUNCE Test::Simple 0.12

2001-08-14 Thread Michael G Schwern
0.11 shipped with problems on 5.005_03 and 5.004. I forgot to test it against them. :( 0.12 fixes that. I've just added this mess into my Makefile.PL to have make test run against 5.004 and 5.005_03 { package MY; sub test_via_harness { my($self, $orig_perl, $tests) = @_;

[PATCH] Test::More PREREQ_PM problem

2001-08-14 Thread Tatsuhiko Miyagawa
When writing tests using Test::More, we should put some phrase like this in Makefile.PL: WriteMakefile( 'NAME'= 'Foobar', 'VERSION_FROM' = 'Foobar.pm', # finds $VERSION 'PREREQ_PM' = { 'Test::More' = 0.08, }, ); This will lead to the following error,