Skip to content

Commit

Permalink
fix and unfudge RT #64464 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jan 30, 2012
1 parent 2002a2f commit b09f2a9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions S05-metasyntax/angle-brackets.t
Expand Up @@ -32,14 +32,12 @@ character classes), and those are referenced at the correct spot.
is('1a2b3c' ~~ /<alpha>/, 'a', 'capturing grammatical assertion (2)');
}

#?rakudo skip 'RT #64464'
#?niecza skip 'regex declaration outside of grammar'
{
regex with-dash { '-' }
my regex with-dash { '-' }
ok '-' ~~ /<with-dash>/, 'can call regexes which dashes (positive)';
ok '|' !~~ /<with-dash>/, 'can call regexes which dashes (negative)';

regex with'hyphen { a }
my regex with'hyphen { a }
ok 'a' ~~ /<with'hyphen>/, 'can call regex with hypen (positive)';
ok 'b' !~~ /<with'hyphen>/, 'can call regex with hypen (negative)';
}
Expand Down

0 comments on commit b09f2a9

Please sign in to comment.