Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge now passing tests.
  • Loading branch information
peschwa committed Apr 15, 2015
1 parent 6afe651 commit e1b2360
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions S05-transliteration/trans.t
Expand Up @@ -117,7 +117,6 @@ is("hello".trans("l" => ""), "heo", "can replace with empty string");
# complement, squeeze/squash, delete

#?niecza 2 skip 'trans flags NYI'
#?rakudo todo 'flags'
is('bookkeeper'.trans(:s, 'a..z' => 'a..z'), 'bokeper',
':s flag (squash)');

Expand All @@ -127,7 +126,6 @@ is('bookkeeper'.trans(:d, 'ok' => ''), 'beeper',
is('ABC123DEF456GHI'.trans('A..Z' => 'x'), 'xxx123xxx456xxx',
'no flags');

#?rakudo 4 todo 'flags'
#?niecza 4 skip 'trans flags NYI'
is('ABC123DEF456GHI'.trans(:c, 'A..Z' => 'x'),'ABCxxxDEFxxxGHI',
'... with :c');
Expand All @@ -144,7 +142,6 @@ is('ABC111DEF222GHI'.trans(:c, :d, 'A..Z' => ''),'ABCDEFGHI',
is('Good&Plenty'.trans('len' => 'x'), 'Good&Pxxxty',
'no flags');

#?rakudo 5 todo 'flags'
#?niecza 5 skip 'trans flags NYI'
is('Good&Plenty'.trans(:s, 'len' => 'x',), 'Good&Pxty',
'squashing depends on replacement repeat, not searchlist repeat');
Expand Down Expand Up @@ -190,7 +187,6 @@ is(" <>&".trans(:c, :s, ([' ', '>', '&'] =>
);
};

#?rakudo todo 'closures and regexes'
#?niecza skip 'closures and regexes'
{
# closures and regexes!
Expand Down

0 comments on commit e1b2360

Please sign in to comment.