diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -79,6 +79,11 @@ match( ' |#', 'don\'t include umlaute in \W' ); +match( + '\ba', 'äa', + '', + '\b must know umlauts' + ); eval( '$escapedwordregex = "' . it::convertregex( '\w' ) . '";' ); $escapedwordregex = preg_replace( '|[\\\\/]|', '', $escapedwordregex ); |