[Bps-public-commit] r15047 - in Scalar-Defer: . t

jesse at bestpractical.com jesse at bestpractical.com
Tue Aug 12 07:19:24 EDT 2008


Author: jesse
Date: Tue Aug 12 07:19:24 2008
New Revision: 15047

Modified:
   Scalar-Defer/Changes
   Scalar-Defer/lib/Scalar/Defer.pm
   Scalar-Defer/t/03-autoload.t

Log:
* Bug fix for 5.10.0 test failures from ISHIGAKI++

Modified: Scalar-Defer/Changes
==============================================================================
--- Scalar-Defer/Changes	(original)
+++ Scalar-Defer/Changes	Tue Aug 12 07:19:24 2008
@@ -1,3 +1,7 @@
+[Changes for 0.18 - 2008-08-12]
+
+* Patch from ISHIGAKI++ to fix broken tests on perl 5.10.0
+
 [Changes for 0.17 - 2008-08-08]
 
 * Warnings avoidance on AUTOLOAD subs. Patch and test by ISHIGAKI++

Modified: Scalar-Defer/lib/Scalar/Defer.pm
==============================================================================
--- Scalar-Defer/lib/Scalar/Defer.pm	(original)
+++ Scalar-Defer/lib/Scalar/Defer.pm	Tue Aug 12 07:19:24 2008
@@ -5,7 +5,7 @@
 use warnings;
 
 BEGIN {
-    our $VERSION   = '0.17';
+    our $VERSION   = '0.18';
     our @EXPORT    = qw( lazy defer force );
     our @EXPORT_OK = qw( is_deferred );
 }

Modified: Scalar-Defer/t/03-autoload.t
==============================================================================
--- Scalar-Defer/t/03-autoload.t	(original)
+++ Scalar-Defer/t/03-autoload.t	Tue Aug 12 07:19:24 2008
@@ -7,7 +7,7 @@
 
 plan tests => 1;
 
-local $UNIVERSAL::{AUTOLOAD} = sub {};
+local $UNIVERSAL::{AUTOLOAD} = 1;
 
 my $capture = IO::Capture::Stderr->new;
 $capture->start;



More information about the Bps-public-commit mailing list