Revision history for Perl extension Test::Simple
0.33 Mon Oct 22 21:05:47 EDT 2001
* It's now officially safe to redirect STDOUT and STDERR without
affecting test output.
- License and POD cleanup by Autrijus Tang
- Synched up Test::Tutorial with the wiki version
- Minor VMS test nit.
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
(Thanks muchly to chromatic for getting this off the ground!)
* 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*
0.19 Tue Sep 18 17:48:32 EDT 2001
* Test::Simple and Test::More no longer print their diagnostics
to STDERR. It instead goes to STDOUT.
* TODO tests which fail now print full failure diagnostics.
- Minor bug in ok()'s test name diagnostics made it think a blank
name was a number.
- ok() less draconian about test names
- Added temporary special case for Parrot::Test
- Now requiring File::Spec for our tests.
0.18 Wed Sep 5 20:35:24 EDT 2001
* ***API CHANGE*** can_ok() only counts as one test
- can_ok() has better diagnostics
- Minor POD fixes from mjd
- adjusting the internal layout to make it easier to put it into
the core
0.17 Wed Aug 29 20:16:28 EDT 2001
* Added can_ok() and isa_ok() to Test::More
0.16 Tue Aug 28 19:52:11 EDT 2001
* vmsperl foiled my sensisble exit codes. Reverting to a much more
coarse scheme.
0.15 Tue Aug 28 06:18:35 EDT 2001 *UNRELEASED*
* Now using sensible exit codes on VMS.
0.14 Wed Aug 22 17:26:28 EDT 2001
* Added a first cut at Test::Tutorial
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 2001
* Fixed some compatibility bugs with older Perls
(Thanks to Tatsuhiko Miyagawa)
0.11 Sat Aug 11 23:05:19 EDT 2001
* Will no longer warn about testing undef values
- Escaping # in test names
- Ensuring that ok() returns true or false and not undef
- Minor doc typo in the example
0.10 Tue Jul 31 15:01:11 EDT 2001
* Test::More is now distributed in this tarball.
* skip and todo tests work!
* Extended use_ok() so it can import
- A little internal rejiggering
- Added a TODO file
0.09 Wed Jun 27 02:55:54 EDT 2001
- VMS fixes
0.08 Fri Jun 15 14:39:50 EDT 2001
- Guarding against $/ and -l
- Reformatted the way failed tests are reported to make them stand out
a bit better.
0.07 Tue Jun 12 15:55:54 BST 2001
- 'use Test::Simple' by itself no longer causes death
- Yet more fixes for death in eval
- Limiting max failures reported via exit code to 254.
0.06 Wed May 9 23:38:17 BST 2001
- Whoops, left a private method in the public docs.
0.05 Wed May 9 20:40:35 BST 2001
- Forgot to include the exit tests.
- Trouble with exiting properly under 5.005_03 and 5.6.1 fixed
- Turned off buffering
* 5.004 new minimum version
- Now explicitly tested with 5.6.1, 5.6.0, 5.005_03 and 5.004
0.04 Mon Apr 2 11:05:01 BST 2001
- Fixed "require Test::Simple" so it doesn't bitch and exit 255
- Now installable with the CPAN shell.
0.03 Fri Mar 30 08:08:33 BST 2001
- ok() now prints on what line and file it failed.
- eval 'die' was considered abnormal. Fixed.
0.02 Fri Mar 30 05:12:14 BST 2001 *UNRELEASED*
- exit codes tested
* exit code on abnormal exit changed to 255 (thanks to Tim Bunce for
pointing out that Unix can't do negative exit codes)
- abnormal exits now better caught.
- No longer using Test.pm to test this, but still minimum of 5.005
due to needing $^S.
0.01 Wed Mar 28 06:44:44 BST 2001
- First working version released to CPAN