Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge a bunch of ~ tests for Rakudo.
  • Loading branch information
jnthn committed Nov 18, 2011
1 parent 08133b6 commit 04961ff
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions S05-metachars/tilde.t
Expand Up @@ -12,7 +12,6 @@ my regex t1 {

ok 'c(ab)d' ~~ m/<&t1>/, 'Can work with ~ and constant atoms (match)';
ok 'ab)d' !~~ m/<&t1>/, '~ and constant atoms (missing opening bracket)';
#?rakudo todo 'nom regression'
ok '(a)d' !~~ m/<&t1>/, '~ and constant atoms (wrong content)';
# this shouldn't throw an exception. See here:
# http://irclog.perlgeek.de/perl6/2009-01-08#i_816425
Expand All @@ -25,7 +24,6 @@ ok 'x(ab' !~~ m/<&t1>/, '~ and constant atoms (missing closing bracket)';
'(' ~ ')' [ 'a'* <&recursive>* ]
};

#?rakudo 5 todo 'nom regression'
ok '()' ~~ m/^ <&recursive> $/, 'recursive "()"';
ok '(a)' ~~ m/^ <&recursive> $/, 'recursive "(a)"';
ok '(aa)' ~~ m/^ <&recursive> $/, 'recursive "(aa)"';
Expand All @@ -46,7 +44,6 @@ ok 'x(ab' !~~ m/<&t1>/, '~ and constant atoms (missing closing bracket)';
my regex m1 { '(' ~ ')' <&m2> };
my regex m2 { a* <&m1>* };

#?rakudo 5 todo 'nom regression'
ok '()' ~~ m/^ <&m1> $/, 'mutually recursive "()"';
ok '(a)' ~~ m/^ <&m1> $/, 'mutually recursive "(a)"';
ok '(aa)' ~~ m/^ <&m1> $/, 'mutually recursive "(aa)"';
Expand Down

0 comments on commit 04961ff

Please sign in to comment.