(Probably not an EBCDIC issue the way one would think
since no chr() et alia are used in UCD.pm.)
p4raw-id: //depot/perl@12904
=head1 DESCRIPTION
-The Unicode::UCD module offers a simple interface to the Unicode Character
-Database.
+The Unicode::UCD module offers a simple interface to the Unicode
+Character Database.
=cut
The filehandle is then kept open for further queries. In other words,
if you are wondering where one of your filehandles went, that's where.
+=head1 BUGS
+
+Does not yet support EBCDIC platforms.
+
=head1 AUTHOR
Jarkko Hietaniemi
use Unicode::UCD;
-use Test;
use strict;
+BEGIN {
+ if (ord("A") == 193) {
+ print "1..0 # Skip: EBCDIC\n";
+ exit 0;
+ }
+}
+
+use Test;
+
BEGIN { plan tests => 162 };
use Unicode::UCD 'charinfo';