in reply to Re: How can I enable utf8 layer on Test::More diag output
in thread How can I enable utf8 layer on Test::More diag output
now we can diag utf8 data.use Test::More; # both of the following are too late for Test::More # because it has already duplicated STDOUT, STDERR binmode(STDOUT, ":utf8"); binmode(STDERR, ":utf8"): my $tb = Test::More->builder; $tb->failure_output(\*STDERR); $tb->todo_output(\*STDERR); $tb->output(\*STDOUT);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How can I enable utf8 layer on Test::More diag output
by moritz (Cardinal) on Jul 22, 2008 at 15:10 UTC | |
by mje (Curate) on Jul 22, 2008 at 15:16 UTC |