File Coverage

blib/lib/Unicode/Truncate.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Unicode::Truncate;
2              
3             our $VERSION = '0.301';
4              
5 3     3   969630 use strict;
  3         6  
  3         171  
6              
7             require Exporter;
8 3     3   17 use base 'Exporter';
  3         5  
  3         2425  
9             our @EXPORT = qw(truncate_egc truncate_egc_inplace);
10              
11             # Commented out for distribution by Inline::Module::LeanDist
12             #use Inline::Module::LeanDist C => 'DATA', FILTERS => [ [ 'Uniprops2Ragel', push(@INC, 'inc') ], [ Ragel => '-G2' ] ];
13              
14             # XSLoader added for distribution by Inline::Module::LeanDist:
15             require XSLoader; XSLoader::load(__PACKAGE__, $VERSION);
16              
17              
18              
19             1;
20              
21              
22             __DATA__