use strict;
use warnings;
-our $VERSION = '0.85_02';
+our $VERSION = '0.86';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
# Make Test::Builder thread-safe for ithreads.
my $self = shift;
my $type = shift;
- $self->_try(sub { require overload; }, die_on_fail => 0);
+ $self->_try(sub { require overload; }, die_on_fail => 1);
foreach my $thing (@_) {
if( $self->_is_object($$thing) ) {
$self->_unoverload( '0+', @_ );
- no warnings 'numeric';
for my $val (@_) {
next unless $self->_is_dualvar($$val);
$$val = $$val + 0;
require Exporter;
our @ISA = qw(Exporter);
-our $VERSION = '0.85_01';
+our $VERSION = '0.86';
# 5.004's Exporter doesn't have export_to_level.
my $_export_to_level = sub {
# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Builder/Tester.pm 67223 2008-10-15T03:08:18.888155Z schwern $
use strict;
-our $VERSION = "1.17_01";
+our $VERSION = "1.18";
use Test::Builder;
use Symbol;
return warn @_, " at $file line $line\n";
}
-our $VERSION = '0.85_01';
+our $VERSION = '0.86';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
use Test::Builder::Module;
use strict;
-our $VERSION = '0.85_02';
+our $VERSION = '0.86_01';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
use Test::Builder::Module;
+0.86 Sun Nov 9 01:09:05 PST 2008
+ Same as 0.85_01
+
+
0.85_01 Thu Oct 23 18:57:38 PDT 2008
New Features
* cmp_ok() now displays the error if the comparison throws one.