Skip to content

Commit

Permalink
Make file compile and correct number of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 16, 2017
1 parent 71aafc1 commit 12f6ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S15-unicode-information/uniprop.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 152;
plan 162;
#?niecza 152 skip "uniprop NYI"

#use unicode :v(6.3);
Expand Down Expand Up @@ -164,7 +164,7 @@ is-deeply 0x2FF0.uniprop('IDS_Binary_Operator'), True, "uniprop for IDS_Binary_O
is-deeply 'ϣ'.uniprop('IDS_Binary_Operator'), False, "uniprop for IDS_Binary_Operator returns False for codepoints without this property";

is-deeply 'Ϳ'.uniprop('ID_Start'), True, "uniprop for ID_Start property returns True for codepoints with this property";
is-deeply '̴'.uniprop('ID_Start'), False "uniprop for ID_Start property returns False for codepoints without this property";
is-deeply ''̴'.uniprop('ID_Start'), False, "uniprop for ID_Start property returns False for codepoints without this property";

is-deeply '؜'.uniprop('Default_Ignorable_Code_Point'), True, "uniprop for Default_Ignorable_Code_Point returns True for codepoints with this property";
is-deeply 'ē'.uniprop('Default_Ignorable_Code_Point'), False, "uniprop for Default_Ignorable_Code_Point returns False for codepoints without this property";
Expand Down

0 comments on commit 12f6ef1

Please sign in to comment.