File Coverage

blib/lib/PerlIO/normalize.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   1518 use strict;
  1         2  
  1         31  
2 1     1   5 use warnings;
  1         3  
  1         46  
3             package PerlIO::normalize;
4             # ABSTRACT: PerlIO layer to normalize unicode strings on input and output
5             $PerlIO::normalize::VERSION = '0.002';
6 1     1   532 use Unicode::Normalize;
  1         2099  
  1         88  
7              
8             require XSLoader;
9              
10             XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION);
11              
12             1;
13              
14             __END__