- or download this
use strict;
use warnings;
...
#is($got, $expected, $test_name);
is(printable($got), printable($expected), $test_name);
}
- or download this
1..4
ok 1 - 00-7F
ok 2 - 80-FF,UTF8=0
ok 3 - 80-FF,UTF8=1
ok 4 - >FF
- or download this
my @tests = (
[ '00-7F', "a" ],
...
my $got = $row->[0];
is(printable($got), printable($input), $test_name);
}