Subject: | Locale Tests seem broken |
Date: | Sat, 14 Mar 2020 16:25:56 -0300 |
To: | bug-Parse-Syslog [...] rt.cpan.org |
From: | Timothy Legge <timlegge [...] gmail.com> |
Hi
The t/locale-syslog contains dates in the de.DE locale however wne the
_next_syslog reads the file it grabs the Month as $1 and as it is a
de.DE month (Mai) it does not Map to a number in the month_map.
The patch below disables the test but it need an actual fix
--- a/t/locale.t
+++ b/t/locale.t
@@ -9,7 +9,8 @@
exit;
};
- plan tests => 4 };
+ plan tests => 0 };
+ exit;
use Parse::Syslog;
ok(1); # If we made it this far, we're ok.
Tim