Skip to content

Commit

Permalink
MONGOLIAN VOWEL SEPARATOR moved from Zs to Cf
Browse files Browse the repository at this point in the history
So don't test it for being whitespace already.
  • Loading branch information
TimToady committed Feb 28, 2014
1 parent 7e2dde6 commit 10afb2d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions S02-lexical-conventions/unicode-whitespace.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 52;
plan 50;

sub try_eval($str) { try EVAL $str }

Expand Down Expand Up @@ -56,10 +56,6 @@ is(try_eval('
my @x = <a b c>; sub y (@z) { @z[1] }; y(@x)
'), "b", "OGHAM SPACE MARK");

is(try_eval('
my᠎@x᠎=᠎<a᠎b᠎c>;᠎sub᠎y᠎(@z)᠎{᠎@z[1]᠎};᠎y(@x)
'), "b", "MONGOLIAN VOWEL SEPARATOR");

is(try_eval('
my @x = <a b c>; sub y (@z) { @z[1] }; y(@x)
'), "b", "EN QUAD");
Expand Down Expand Up @@ -144,7 +140,6 @@ is(try_eval('foo\ .lc'), 'a', 'long dot with SPACE');
is(try_eval('foo\….lc'), 'a', 'long dot with NEXT LINE (NEL)');
is(try_eval('foo\ .lc'), 'a', 'long dot with NO-BREAK SPACE');
is(try_eval('foo\ .lc'), 'a', 'long dot with OGHAM SPACE MARK');
is(try_eval('foo\᠎.lc'), 'a', 'long dot with MONGOLIAN VOWEL SEPARATOR');
is(try_eval('foo\ .lc'), 'a', 'long dot with EN QUAD');
is(try_eval('foo\ .lc'), 'a', 'long dot with EM QUAD');
is(try_eval('foo\ .lc'), 'a', 'long dot with EN SPACE');
Expand Down

0 comments on commit 10afb2d

Please sign in to comment.