David Wheeler Mon, 09 Jan 2006 09:19:51 -0800
On Jan 9, 2006, at 2:18 AM, Adrian Howard wrote:
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;
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;
Ah, right, error_output, too. Thanks! David