File: 30_mappings.t

package info (click to toggle)
libunicode-stringprep-perl 1.104%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 284 kB
  • sloc: perl: 3,558; sh: 48; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (4)
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);
}