On 19/09/2007, Steve Peters <[EMAIL PROTECTED]> wrote:
> On Tue, Sep 18, 2007 at 06:03:13PM -0700, Michael G Schwern wrote:
> > Jerry D. Hedden wrote:
> > > Michael G Schwern wrote:
> > >> http://www.pobox.com/~schwern/src/Test-Simple-0.71.tar.gz
> > >
> > > BTW, when to you plan to submit a patch for this against blead?
> >
> > Magic p5p fairies usually take care of that.
> >
>
> I hope that isn't a title that sticks. Bleadperl is updated to
> Test-Simple-0.71 with change #31907.
And tests now pass with following change.
It takes care of
a/ pushing the right dirs in @INC when running in the perl core test suite
b/ fixes the $VERSION of Dummy.pm. Apparently bleadperl comes with
another version of Dummy.pm than Test::Simple........ don't ask me
why...
Change 31911 by [EMAIL PROTECTED] on 2007/09/19 14:28:28
Fix failing Test::Simple test
Affected files ...
... //depot/perl/lib/Test/Simple/t/More.t#11 edit
Differences ...
==== //depot/perl/lib/Test/Simple/t/More.t#11 (text) ====
@@ -3,7 +3,7 @@
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
- @INC = '../lib';
+ @INC = qw(../lib lib);
}
}
@@ -17,7 +17,7 @@
$! = $Errno;
use_ok('Dummy');
-is( $Dummy::VERSION, '0.01', 'use_ok() loads a module' );
+is( $Dummy::VERSION, '5.562', 'use_ok() loads a module' );
require_ok('Test::More');