Skip Menu |

This queue is for tickets about the DBIx-Class-Sims CPAN distribution.

Report information
The Basics
Id: 118518
Status: resolved
Priority: 0/
Queue: DBIx-Class-Sims

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: Random test failure (four digit us zipcode)
On some of my smokers t/column_defaults.t fails like this: # Failed test 'us_zipcode is correct' # at t/column_defaults.t line 169. # '7703' # doesn't match '(?^:^\d{5}$)' # Looks like you failed 1 test of 22. t/column_defaults.t ...... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/22 subtests
On 2016-10-27 03:05:58, SREZIC wrote: Show quoted text
> On some of my smokers t/column_defaults.t fails like this: > > # Failed test 'us_zipcode is correct' > # at t/column_defaults.t line 169. > # '7703' > # doesn't match '(?^:^\d{5}$)' > # Looks like you failed 1 test of 22. > t/column_defaults.t ...... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/22 subtests
Same problem with DBIx-Class-Sims-0.300403
Fixed in 0.300404 released today
On 2016-12-01 09:08:17, RKINYON wrote: Show quoted text
> Fixed in 0.300404 released today
Well, I have to re-open --- it seems that three digits may also happen (and maybe even less): ... # Failed test 'us_zipcode is correct' # at t/column_defaults.t line 169. # '583' # doesn't match '(?^:^\d{4,5}$)' # Looks like you failed 1 test of 22. t/column_defaults.t ...... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/22 subtests ... So the regexp should probably something like /^\d{1,5}$/
Released updated fix in 0.300405
Subject: Re: [rt.cpan.org #118518] Random test failure (four digit us zipcode)
Date: Sun, 4 Dec 2016 18:26:28 -0500
To: bug-DBIx-Class-Sims [...] rt.cpan.org
From: Rob Kinyon <rkinyon [...] cpan.org>
Fixed and released as 0.300405 On Fri, Dec 2, 2016 at 1:23 AM, Slaven_Rezic via RT < bug-DBIx-Class-Sims@rt.cpan.org> wrote: Show quoted text
> Queue: DBIx-Class-Sims > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=118518 > > > On 2016-12-01 09:08:17, RKINYON wrote:
> > Fixed in 0.300404 released today
> > Well, I have to re-open --- it seems that three digits may also happen > (and maybe even less): > > ... > # Failed test 'us_zipcode is correct' > # at t/column_defaults.t line 169. > # '583' > # doesn't match '(?^:^\d{4,5}$)' > # Looks like you failed 1 test of 22. > t/column_defaults.t ...... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/22 subtests > ... > > So the regexp should probably something like /^\d{1,5}$/ > >
-- Thanks, Rob Kinyon