diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -210,6 +210,10 @@ is( "test all=>1,pattern_order=>1" ); +is(it::replace(array('\w' => "x"), "oö"), "xx"); +is(it::replace(array('\w' => "x", '#' => "!"), "#ö"), "!x"); +is(it::replace(array('#' => "!", '\w' => "x"), "#ö"), "!x"); +is(it::replace(array('ö' => "x"), "Ö"), "x"); # it::filter_keys tests |