1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
use strict;
use utf8;
no warnings 'utf8';
use Test::More;
use Test::NoWarnings;
use Unicode::Stringprep;
our @data = (
[ 0x0000 => '^@' ],
[ 0x0001 => '^A' ],
[ 0x0041 => 'a' ],
[ 0x00DF => 'ss' ],
[ 0x123 => "รค" ],
[ 0x20AC => 'EUR' ],
[ 0x10FFFF => '#' ],
);
plan tests => ($#data+1) + 1;
my $prep = Unicode::Stringprep->new( 3.2, [ @data ], '', [ ], 0 );
foreach(@data)
{
my ($in,$out) = @{$_};
is($prep->(chr($in)), $out, sprintf 'U+%04X', $in);
}
|