diff options
Diffstat (limited to 't/op')
-rw-r--r-- | t/op/tr.t | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,14 +1,18 @@ # tr.t $|=1; -use utf8; - BEGIN { chdir 't' if -d 't'; require './test.pl'; set_up_inc('../lib'); + if (is_miniperl()) { + eval 'require utf8'; + skip_all("miniperl, no 'utf8'"); + } } +use utf8; + plan tests => 164; # Test this first before we extend the stack with other operations. |