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 14     14   609738 use strict;
  14         35  
  14         546  
4 14     14   80 use warnings;
  14         31  
  14         1755  
5              
6             BEGIN {
7 14     14   46 our $VERSION = '0.60';
8 14         57 our @EXPORT_OK = qw[ decode_utf8 encode_utf8 valid_utf8 ];
9 14         61 our %EXPORT_TAGS = (
10             all => [ @EXPORT_OK ],
11             );
12              
13 14         76 require XSLoader;
14 14         9959 XSLoader::load(__PACKAGE__, $VERSION);
15              
16 14         145 require Exporter;
17 14         497 *import = \&Exporter::import;
18             }
19              
20             1;
21