Skip to content

Commit

Permalink
Test that hangul syllables return the correct Unicode name
Browse files Browse the repository at this point in the history
These are not listed directly in the Unicode data files and are
pregenerated during Unicode database creation on MoarVM.
  • Loading branch information
samcv committed Sep 12, 2017
1 parent 00554cc commit 6a4bc54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion S15-unicode-information/uniname.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 40;
plan 41;

# Unicode version pragma not needed here, as names cannot change.

Expand Down Expand Up @@ -69,3 +69,5 @@ is "AB".uninames, ("LATIN CAPITAL LETTER A", "LATIN CAPITAL LETTER B"), "uniname

#?rakudo.jvm skip "No Unicode 9 yet"
is uniname("🦋"), "BUTTERFLY", "Can resolve Unicode 9 character name";

is-deeply 0xD4DB.uniname, "Hangul Syllable PWILH", "Supports composed Hangul Syllable names";

0 comments on commit 6a4bc54

Please sign in to comment.