Skip to content

Commit

Permalink
RT #77410 test for :ignorecase in character classes
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Mar 3, 2013
1 parent 24bb91f commit add5509
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion S05-modifier/ignorecase.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 21;
plan 24;

=begin description
Expand Down Expand Up @@ -74,4 +74,11 @@ ok 'a' ~~ /:i < A B > /, ':i and quote words';
ok $!, "need whitespace after modifier";
}

# RT #77410
{
ok "m" ~~ /:i [M]/, "ignore case of character classes";
nok "m" ~~ /[M]/, "ignore case of character classes";
nok "n" ~~ /:i [M]/, "ignore case of character classes";
}

# vim: syn=perl6 sw=4 ts=4 expandtab

0 comments on commit add5509

Please sign in to comment.