Skip Menu |

This queue is for tickets about the Purple CPAN distribution.

Report information
The Basics
Id: 35890
Status: resolved
Priority: 0/
Queue: Purple

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc: ferreira [...] cpan.org
imacat [...] cpan.org
mschwern [...] cpan.org
AdminCc:

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



CC: ferreira [...] cpan.org, mschwern [...] cpan.org
Subject: Test::More 0.74 broke Purple
Sometime last November a new version of Test::More came with a bugfix that broke several CPAN distributions, among which there was Purple. See http://use.perl.org/~ferreira/journal/35077 for details. I'm sorry to bring the bad news and I hope this helps to understand the fails from cpantesters. Regards,
From: perl-rt [...] misterwhipple.com
The attached patch compensates. No tests are changed, only the loading of the target module. On Wed May 14 16:36:42 2008, ANDK wrote: Show quoted text
> Sometime last November a new version of Test::More came with a bugfix > that broke several CPAN distributions, among which there was Purple. > > See http://use.perl.org/~ferreira/journal/35077 for details. > > I'm sorry to bring the bad news and I hope this helps to understand the > fails from cpantesters. > > Regards,
--- t/api.t 2008-04-17 16:49:12.000000000 -0400 +++ t_new/api.t 2008-09-14 23:45:23.000000000 -0400 @@ -9,7 +9,7 @@ SQLite ); -plan tests => scalar @implementations * 85; +plan tests => (scalar @implementations * 85) + 1; ### vars my $DB_LOC = 't'; @@ -23,7 +23,7 @@ my $url2 = 'http://i.love.purple.net/ChrisDent'; ### load module (1) -BEGIN { use_ok('Purple') } +use_ok('Purple'); foreach my $type (@implementations) {
Dear Chris Dent, Hi. This is imacat from Taiwan. I encounter the same problem. Furthermore, the patch works for me. Hope to see an updated version soon. Please tell me if you need any more information. Thank you. On 2008-09-15 13:55:34 Monday, mister_whipple wrote Show quoted text
> The attached patch compensates. No tests are changed, only the loading > of the target module. > > On Wed May 14 16:36:42 2008, ANDK wrote:
> > Sometime last November a new version of Test::More came with a bugfix > > that broke several CPAN distributions, among which there was Purple. > > > > See http://use.perl.org/~ferreira/journal/35077 for details. > > > > I'm sorry to bring the bad news and I hope this helps to understand the > > fails from cpantesters. > > > > Regards,
> >
Sorry for the endless day in getting this fixed. I've made the changes, and a new version is on its way to CPAN. Purple code is now hosted on github so it isn't lost: http://github.com/cdent/purple/tree/master