Upgrade to Test-Simple 0.86
Steve Hay [Fri, 12 Dec 2008 16:50:08 +0000 (16:50 +0000)]
Remove local changes 34491 (no longer required) and 34763 (fixed
properly by change 35076), but keep 34545 and 34762 for now (with
a VERSION bump in Test::Simple as a reminder)

p4raw-id: //depot/perl@35077

lib/Test/Builder.pm
lib/Test/Builder/Module.pm
lib/Test/Builder/Tester.pm
lib/Test/More.pm
lib/Test/Simple.pm
lib/Test/Simple/Changes

index 4ed13d5..b387444 100644 (file)
@@ -5,7 +5,7 @@ use 5.006;
 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.
@@ -457,7 +457,7 @@ sub _unoverload {
     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) ) {
@@ -487,7 +487,6 @@ sub _unoverload_num {
 
     $self->_unoverload( '0+', @_ );
 
-    no warnings 'numeric';
     for my $val (@_) {
         next unless $self->_is_dualvar($$val);
         $$val = $$val + 0;
index 8cbd7a3..4ccdf09 100644 (file)
@@ -8,7 +8,7 @@ use Test::Builder;
 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 {
index 168ef6f..8b1f46b 100644 (file)
@@ -2,7 +2,7 @@ package Test::Builder::Tester;
 # $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;
index 6c00a8c..2ccd314 100644 (file)
@@ -18,7 +18,7 @@ sub _carp {
     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;
index 93b8feb..a7924cc 100644 (file)
@@ -5,7 +5,7 @@ use 5.004;
 
 use strict;
 
-our $VERSION = '0.85_02';
+our $VERSION = '0.86_01';
 $VERSION = eval $VERSION;    ## no critic (BuiltinFunctions::ProhibitStringyEval)
 
 use Test::Builder::Module;
index c89a140..09a5662 100644 (file)
@@ -1,3 +1,7 @@
+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.