Skip Menu |

This queue is for tickets about the DateTime-Format-Natural CPAN distribution.

Report information
The Basics
Id: 23672
Status: resolved
Priority: 0/
Queue: DateTime-Format-Natural

People
Owner: Nobody in particular
Requestors: sekimura [...] gmail.com
Cc:
AdminCc:

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



Subject: quick fix for 00-load.t
hi, doing "make test" I got a error with "DateTime-Format-Natural-0.19". it seems to be using wrong package name. added a patch for quick fix. I hope it would be good. thanks,
Subject: DFN-00-load.diff
--- t/00-load.t.orig 2006-11-28 04:11:56.000000000 +0900 +++ t/00-load.t 2006-11-28 10:59:10.000000000 +0900 @@ -6,7 +6,7 @@ use Test::More tests => 1; BEGIN { - use_ok('DateTime::Format::Natural::EN'); + use_ok('DateTime::Format::Natural::Lang::EN'); } -diag("Testing DateTime::Format::Natural::EN $DateTime::Format::Natural::EN::VERSION, Perl $], $^X"); +diag("Testing DateTime::Format::Natural::Lang::EN $DateTime::Format::Natural::Lang::EN::VERSION, Perl $], $^X");
On Mon Nov 27 21:10:35 2006, SEKIMURA wrote: Show quoted text
> hi, > > doing "make test" I got a error with "DateTime-Format-Natural-0.19". it > seems to be using wrong package name. added a patch for quick fix. > > I hope it would be good. > > thanks,
Thanks for reporting. I'd never would have become aware of this error, because EN.pm still seems to be hiding somewhere. I applied your patch with minor fixes.