On Wed, Aug 15, 2001 at 01:24:00AM +0900, Tatsuhiko Miyagawa wrote:
> This will lead to the following error, caused by eval()ing
> standalone "use Test::More".
>
> Odd number of elements in hash assignment at
> /usr/local/lib/perl5/site_perl/5.005/Test/Simple.pm line 32.
> Warning: prerequi
Release early, release often. :)
0.13 Tue Aug 14 15:30:10 EDT 2001
* Added a reason to the skip_all interface
- Fixed a bug to allow 'use Test::More;' to work.
(Thanks to Tatsuhiko Miyagawa again)
- Now always testing backwards compatibility.
0.12 Tue Aug 14 11:02:39 EDT 200
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 l
On Tue, Aug 14, 2001 at 06:35:17PM +0900, Tatsuhiko Miyagawa wrote:
> It doesn't pass make tests here, with 5.005_03. Patch follows.
Got it, thanks. I also busted a few things in 5.004.
--
Michael G. Schwern <[EMAIL PROTECTED]>http://www.pobox.com/~schwern/
Perl6 Quality Assurance <
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) = @_;
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