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 16     16   1677370 use strict;
  16         36  
  16         632  
4 16     16   70 use warnings;
  16         24  
  16         2373  
5              
6             BEGIN {
7 16     16   85 our $VERSION = '0.72';
8 16         47 our @EXPORT_OK = qw[ decode_utf8 encode_utf8 read_utf8 valid_utf8 ];
9 16         72 our %EXPORT_TAGS = (
10             all => [ @EXPORT_OK ],
11             );
12              
13 16         79 require XSLoader;
14 16         8085 XSLoader::load(__PACKAGE__, $VERSION);
15              
16 16         151 require Exporter;
17 16         606 *import = \&Exporter::import;
18             }
19              
20             1;