Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Simple CPAN distribution.

Report information
The Basics
Id: 30780
Status: resolved
Priority: 0/
Queue: Test-Simple

People
Owner: Nobody in particular
Requestors: nick [...] ccl4.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC: Rafael Garcia-Suarez <rgarciasuarez [...] gmail.com>
Subject: blead patch - Change 31911: Fix failing Test::Simple test
Date: Fri, 16 Nov 2007 17:28:58 +0000
To: bug-Test-Simple [...] rt.cpan.org
From: Nicholas Clark <nick [...] ccl4.org>
I don't think that this blead patch has been forwarded back upstream. Offhand, I don't know what Rafael hit that caused him to make this change. Nicholas Clark ----- Forwarded message from Rafael Garcia-Suarez <rgarciasuarez@gmail.com> ----- Envelope-to: nick@ccl4.org Delivery-date: Wed, 19 Sep 2007 15:30:41 +0100 Mailing-List: contact perl5-changes-help@perl.org; run by ezmlm Precedence: bulk List-Post: <mailto:perl5-changes@perl.org> List-Help: <mailto:perl5-changes-help@perl.org> List-Unsubscribe: <mailto:perl5-changes-unsubscribe@perl.org> List-Subscribe: <mailto:perl5-changes-subscribe@perl.org> List-Id: <perl5-changes.perl.org> Delivered-To: mailing list perl5-changes@perl.org Delivered-To: perl5-changes@perl.org From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com> To: "Anybody And Everybody" <perl5-changes@perl.org> Subject: Change 31911: Fix failing Test::Simple test Date: Wed, 19 Sep 2007 07:30:08 -0700 (PDT) Change 31911 by rgs@stcosmo 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) ==== Index: perl/lib/Test/Simple/t/More.t --- perl/lib/Test/Simple/t/More.t#10~31907~ 2007-09-19 06:21:26.000000000 -0700 +++ perl/lib/Test/Simple/t/More.t 2007-09-19 07:28:28.000000000 -0700 @@ -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'); End of Patch. Show quoted text
----- End forwarded message -----
Subject: Re: [rt.cpan.org #30780] blead patch - Change 31911: Fix failing Test::Simple test
Date: Fri, 16 Nov 2007 13:04:44 -0800
To: bug-Test-Simple [...] rt.cpan.org
From: Michael G Schwern <schwern [...] pobox.com>
Nicholas Clark via RT wrote: Show quoted text
> I don't think that this blead patch has been forwarded back upstream. > Offhand, I don't know what Rafael hit that caused him to make this change.
Seems version.pm and Test::More both have a Dummy.pm for testing. bleadperl has only one t/lib for them to store such things so I guess Rafael just made them the same. It's a core hack, this change doesn't have to go back into Test::Simple. The single t/lib in bleadperl, otoh, will have to be addressed. This sort of thing is only going to get worse. -- 'All anyone gets in a mirror is themselves,' she said. 'But what you gets in a good gumbo is everything.' -- "Witches Abroad" by Terry Prachett