On 9 Jan 2006, at 05:03, David Wheeler wrote:
[snip]
Is there any way to get Test::Builder to set an I/O layer on its file handles?
[snip]

Y'want Test::Builder's failure_output(), e.g.:

use Test::More tests => 1;
binmode Test::More->builder->failure_output, ':utf8';
diag "\x{201c}";
ok 1;

Cheers,

Adrian

Reply via email to