X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FTest%2FSimple%2FChanges;h=d046129cae494da8a8e4b1d958f909cb1729a3fa;hb=5143c659fadb184e0a7d17e727769f92c91d37b7;hp=f9e64832f4d26f356e4157edc92e068a9e86444d;hpb=b4ec42b69d9617082490f2c4d5d6882716a48762;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/Test/Simple/Changes b/lib/Test/Simple/Changes index f9e6483..d046129 100644 --- a/lib/Test/Simple/Changes +++ b/lib/Test/Simple/Changes @@ -1,3 +1,24 @@ +0.60 Tue May 3 14:20:34 PDT 2005 + +0.59_01 Tue Apr 26 21:51:12 PDT 2005 + * Test::Builder now has a create() method which allows you to create + a brand spanking new Test::Builder object. + * require_ok() was not working for single letter module names. + * is_deeply() and eq_* now work with circular scalar references + (Thanks Fergal) + * Use of eq_* now officially discouraged. + - Removed eq_* from the SYNOPSIS. + - is_deeply(undef, $not_undef); now works. [rt.cpan.org 9441] + - is_deeply() was mistakenly interpeting the same reference used twice + in a data structure as being circular causing failures. + [rt.cpan.org 11623] + - Loading Test::Builder but not using it would interfere with the + exit code if the code exited. [rt.cpan.org 12310] + - is_deeply() diagnostics now disambiguate between stringified references + and references. [rt.cpan.org 8865] + - Files opened by the output methods are now autoflushed. + - todo() now honors $Level when looking for $TODO. + 0.54 Wed Dec 15 04:18:43 EST 2004 * $how_many is optional for skip() and todo_skip(). Thanks to Devel::Cover for pointing this out.