Skip to content

Commit

Permalink
fix plan, and fix invalid test about ƌ being decomposable
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed May 8, 2015
1 parent 831838f commit 5ed2ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S05-modifier/ignoremark.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 10;
plan 11;

=begin description
Expand All @@ -21,7 +21,7 @@ ok('à' ~~ m:m/a/, 'Ignoremark: a matches à');
ok('á' ~~ m:m/a/, 'Ignoremark: a matches á');
ok('â' ~~ m:m/a/, 'Ignoremark: a matches â');
ok('å' ~~ m:m/a/, 'Ignoremark: a matches å');
ok('ƌ' ~~ m:m/d/, 'Ignoremark: d matches ƌ');
ok('ƌ' !~~ m:m/d/, 'Ignoremark: d does not match ƌ, TOPBAR is not a mark');
ok('å' ~~ m:m/ä/, 'Both pattern and string may contain accents');
ok('a' ~~ m:m/ä/, 'Pattern may contain accents');
ok('ä' ~~ m:ignoremark/a/, 'Ignoremark: spelling out :ignoremark also works');
Expand Down

0 comments on commit 5ed2ff4

Please sign in to comment.