http://www.pobox.com/~schwern/src/Test-Simple-0.32.tar.gz

Version 0.32 of Test::Simple/More/Builder is winging it's way to CPAN.

The really important thing about 0.32 is plan().  After months of
studiously ignoring this problem, I've finally added a seperate plan()
function, so you can say:

    use Test::More;
    if( $^O eq 'MacOS' ) {
        plan skip_all => "This won't work under MacOS";
    }
    else {
        plan tests => 42;
    }

This version should cover every important feature that Test::Simple
and Test::More really need.  It can be said to be "feature complete".
If I've missed something, let me know.

I'd like the VMS, Win32 and MacOS folks to give it a whack.  There
shouldn't be any real trouble.

This version should be sync'd into bleadperl.  The current bleadperl
version is 0.19 + some hackery.  Nick was recently lamenting the lack
of plan(), and the Test::Builder stuff will make the writing of some
tests easier (File::Copy being my current headache).

Jarkko, do you want me to submit a patch or let you handle it?  It
shouldn't be as much of a hassle as last time.


0.32  Tue Oct 16 16:52:02 EDT 2001
    * Finally added a seperate plan() function
    * Adding a name field to isa_ok()
      (Requested by Dave Rolsky)
    - Test::More was using Carp.pm, causing the occasional false positive.
      (Reported by Tatsuhiko Miyagawa)

0.31  Mon Oct  8 19:24:53 EDT 2001
    * Added an import option to Test::More
    * Added no_ending and no_header options to Test::Builder
      (Thanks to Dave Rolsky for giving this a swift kick in the ass)
    * Added is_deeply().  Display of scalar refs not quite 100%
      (Thanks to Stas Bekman for Apache::TestUtil idea thievery)
    - Fixed a minor warning with skip()
      (Thanks to Wolfgang Weisselberg for finding this one)

0.30  Thu Sep 27 22:10:04 EDT 2001
    * Added Test::Builder
    * Diagnostics are back to using STDERR *unless* it's from a todo
      test.  Those go to STDOUT.
    - Fixed it so nothing is printed if a test is run with a -c flag.
      Handy when a test is being deparsed with B::Deparse.

0.20  *UNRELEASED*


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl6 Quality Assurance     <[EMAIL PROTECTED]>       Kwalitee Is Job One
my anus yearns now
warm paste fills me happily
saturday morning
        -- imploded

Reply via email to