File Coverage

blib/lib/Unicode/UTF8.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Unicode::UTF8;
2              
3 15     15   336150 use strict;
  15         23  
  15         337  
4 15     15   47 use warnings;
  15         17  
  15         1235  
5              
6             BEGIN {
7 15     15   24 our $VERSION = '0.62';
8 15         42 our @EXPORT_OK = qw[ decode_utf8 encode_utf8 valid_utf8 ];
9 15         53 our %EXPORT_TAGS = (
10             all => [ @EXPORT_OK ],
11             );
12              
13 15         57 require XSLoader;
14 15         5152 XSLoader::load(__PACKAGE__, $VERSION);
15              
16 15         100 require Exporter;
17 15         300 *import = \&Exporter::import;
18             }
19              
20             1;
21