Skip to content

Commit

Permalink
correct two tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jan 23, 2012
1 parent 40f4b64 commit e10ffa7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions S05-mass/rx.t
Expand Up @@ -420,18 +420,16 @@ ok '...---...' !~~ /'... --- ...'/, 'literal match (\\\')';
ok 'ab\'>cd' ~~ /'ab\'>cd'/, 'literal match with quote';

#### 'ab\\yz' ab\x5cyz y literal match with backslash
#?rakudo todo 'nom regression'
#?niecza todo ''
ok 'ab\x5cyz' ~~ /'ab\\yz'/, 'literal match with backslash';
ok "ab\x5cyz" ~~ /'ab\\yz'/, 'literal match with backslash';

#### 'ab"cd' ab"cd y literal match with quote
ok 'ab"cd' ~~ /'ab"cd'/, 'literal match with quote';

#### 'ab\\yz' ab\x5cyz y literal match with backslash
#?pugs todo 'feature'
#?rakudo todo 'todo'
#?niecza todo ''
ok 'ab\x5cyz' ~~ /'ab\\yz'/, 'literal match with backslash';
ok "ab\x5cyz" ~~ /'ab\\yz'/, 'literal match with backslash';

#### "... --- ..." ... --- ... y literal match (\")
#?pugs todo 'feature'
Expand Down

0 comments on commit e10ffa7

Please sign in to comment.