• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Test/More/H24-Jun-2017-8025

t/H24-Jun-2017-11379

.gitignoreH A D24-Jun-2017106 1211

ChangesH A D24-Jun-2017298 1811

MANIFESTH A D24-Jun-2017199 1615

MANIFEST.SKIPH A D24-Jun-2017483 3326

META.jsonH A D24-Jun-2017950 4342

META.ymlH A D24-Jun-2017571 2423

Makefile.PLH A D24-Jun-2017484 1613

READMEH A D24-Jun-20171.1 KiB4027

README

1NAME
2    Test::More::UTF8 - Enhancing Test::More for UTF8-based projects
3
4SYNOPSIS
5        use Test::More;
6        use Test::More::UTF8;
7
8        # now we can easily use flagged strings without warnings like "Wide character in print ..."
9        is("\x{410}","\x{420}"); # got a failure message without warnings
10
11LIMITATIONS
12        This module have reason only for perl 5.8 and higher
13
14FEATURES
15    This module also switch on by default utf8 pragma. To disable this, add
16    "-utf8" option
17
18        use Test::More::UTF8 qw(-utf8);
19
20    By default binmode ':utf8' will be done on all output handles:
21    failure_output, todo_output, output. It is possible to choose only some
22    of them
23
24        use Test::More::UTF8 qw(failure); # enable :utf8 only on failure_output
25        use Test::More::UTF8 qw(todo); # enable :utf8 only on todo_output
26        use Test::More::UTF8 qw(out); # enable :utf8 only on output
27
28AUTHOR
29    Mons Anderson, <mons@cpan.org>
30
31BUGS
32    None known
33
34COPYRIGHT & LICENSE
35    Copyright 2009 Mons Anderson, all rights reserved.
36
37    This program is free software; you can redistribute it and/or modify it
38    under the same terms as Perl itself.
39
40