Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #115802, one fix, one todo added
  • Loading branch information
FROGGS committed Feb 24, 2013
1 parent 4debe16 commit 9527129
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S05-metasyntax/charset.t
Expand Up @@ -12,7 +12,7 @@ be valid perl6.
=end pod

plan 34;
plan 36;

# Broken:
# L<S05/Extensible metasyntax (C<< <...> >>)/"A leading [ ">
Expand All @@ -35,6 +35,12 @@ ok(!( "a" ~~ m/(<[a..z]-[aeiou]>)/ ), 'Difference set failure');
ok("y" ~~ m/(<[a..z]-[aeiou]>)/, 'Difference set match');
#?pugs todo
is($0, 'y', 'Difference set capture');

# RT #115802
ok( "abc" ~~ m/<[\w]-[\n]>/, 'Difference set match');
#?rakudo todo
ok(!("abc" ~~ m/<[\w]-[\N]>/), 'Difference set match');

ok(!( "a" ~~ m/(<+alpha-[aeiou]>)/ ), 'Named difference set failure');
#?pugs todo
ok("y" ~~ m/(<+alpha-[aeiou]>)/, 'Named difference set match');
Expand Down

0 comments on commit 9527129

Please sign in to comment.