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: 39329
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)



Subject: test diffs between 0.80 and blead
Date: Tue, 16 Sep 2008 16:51:38 +0100
To: bug-Test-Simple [...] rt.cpan.org
From: Nicholas Clark <nick [...] ccl4.org>
The modules in blead and in Test::Simple 0.80 are identical. The only differences are in two test files. Appended - would it be possible to roll these into a future release? Nicholas Clark diff -pru Test-Simple-0.80/t/More.t perl/lib/Test/Simple/t/More.t --- Test-Simple-0.80/t/More.t 2007-08-15 23:24:14.000000000 +0100 +++ perl/lib/Test/Simple/t/More.t 2008-04-15 14:52:16.000000000 +0100 @@ -3,7 +3,7 @@ BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; - @INC = '../lib'; + @INC = qw(../lib ../lib/Test/Simple/t/lib); } } diff -pru Test-Simple-0.80/t/use_ok.t perl/lib/Test/Simple/t/use_ok.t --- Test-Simple-0.80/t/use_ok.t 2006-09-04 09:23:12.000000000 +0100 +++ perl/lib/Test/Simple/t/use_ok.t 2008-04-15 16:03:09.000000000 +0100 @@ -3,7 +3,7 @@ BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; - @INC = ('../lib', 'lib'); + @INC = qw(../lib ../lib/Test/Simple/t/lib); } else { unshift @INC, 't/lib';
Subject: Re: [rt.cpan.org #39329] test diffs between 0.80 and blead
Date: Tue, 16 Sep 2008 20:00:45 -0700
To: bug-Test-Simple [...] rt.cpan.org
From: Michael G Schwern <schwern [...] pobox.com>
Nicholas Clark via RT wrote: Show quoted text
> diff -pru Test-Simple-0.80/t/More.t perl/lib/Test/Simple/t/More.t > --- Test-Simple-0.80/t/More.t 2007-08-15 23:24:14.000000000 +0100 > +++ perl/lib/Test/Simple/t/More.t 2008-04-15 14:52:16.000000000 +0100 > @@ -3,7 +3,7 @@ > BEGIN { > if( $ENV{PERL_CORE} ) { > chdir 't'; > - @INC = '../lib'; > + @INC = qw(../lib ../lib/Test/Simple/t/lib); > } > } > > diff -pru Test-Simple-0.80/t/use_ok.t perl/lib/Test/Simple/t/use_ok.t > --- Test-Simple-0.80/t/use_ok.t 2006-09-04 09:23:12.000000000 +0100 > +++ perl/lib/Test/Simple/t/use_ok.t 2008-04-15 16:03:09.000000000 +0100 > @@ -3,7 +3,7 @@ > BEGIN { > if( $ENV{PERL_CORE} ) { > chdir 't'; > - @INC = ('../lib', 'lib'); > + @INC = qw(../lib ../lib/Test/Simple/t/lib); > } > else { > unshift @INC, 't/lib';
These both look like bleadperl specific changes replacing pushing t/lib onto @INC with lib/Test/Simple/t/lib. I can't accommodate that in the CPAN release, can't stick non-distributed Perl modules into lib/. -- 100. Claymore mines are not filled with yummy candy, and it is wrong to tell new soldiers that they are. -- The 213 Things Skippy Is No Longer Allowed To Do In The U.S. Army http://skippyslist.com/list/
Oh, I get it. That is core specific code. Sure, done.