NAME
Test::More::UTF8 - Enhancing Test::More for UTF8-based projects
SYNOPSIS
use
Test::More;
use
Test::More::UTF8;
# now we can easily use flagged strings without warnings like "Wide character in print ..."
is(
"\x{410}"
,
"\x{420}"
);
# got a failure message without warnings
LIMITATIONS
This module have reason only
for
perl 5.8 and higher
FEATURES
This module also switch on by default utf8 pragma. To disable this, add "-utf8" option
By default binmode ':utf8' will be done on all output handles: failure_output, todo_output, output. It is possible to choose only some of them
AUTHOR
Mons Anderson, <mons@cpan.org>
BUGS
None known
COPYRIGHT & LICENSE
Copyright 2009 Mons Anderson, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.