On Mon Jun 23 20:22:40 2008, autarch@urth.org wrote:
Show quoted text> On Mon, 23 Jun 2008, Andreas Koenig via RT wrote:
>
> > <URL:
http://rt.cpan.org/Ticket/Display.html?id=36672 >
> >
> > Closer inspection of the testers reports reveals that the DateTime and
> > DateTime-Locale releases around May 18/19 contribute to the case.
> >
> > CCing Dave. Dave, can you shed some light on the issue?
>
> This is a known problem with a simple fix. Rick, _please_ make a new
> release to fix this, it's breaking a fair number of modules which depend
> on yours.
>
> In the future, it'd be much better to provide your own custom locale for
> testing rather than relying on DT::Locale, which can and will change over
> time.
>
>
> -dave
>
> /*==========================
> VegGuide.Org
> Your guide to all that's veg
> ==========================*/
For those following along, the patch below gets the tests passing again.
Steve Peters
steve@fisharerojo.org
--- t/004_locale_defaults.t.old 2008-07-02 21:56:21.000000000 -0500
+++ t/004_locale_defaults.t 2008-07-02 21:55:28.000000000 -0500
@@ -29,9 +29,9 @@
['en_GB', '%c', '31 Dec 1998 12:34:56'],
# French
#);my @tests = (
- ['fr', '%x', '31 déc 1998'],
+ ['fr', '%x', '31 déc. 1998'],
['fr', '%X', '12:34:56'],
- ['fr', '%c', '31 déc 1998 12:34:56'],
+ ['fr', '%c', '31 déc. 1998 12:34:56'],
);
foreach (@tests) {