File Coverage

blib/lib/Unicode/Precis/Utils.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             #-*- perl -*-
2             #-*- coding: utf-8 -*-
3              
4             package Unicode::Precis::Utils;
5              
6 3     3   42660 use 5.008;
  3         9  
7 3     3   16 use strict;
  3         7  
  3         64  
8 3     3   14 use warnings;
  3         5  
  3         99  
9              
10 3     3   14 use base qw(Exporter);
  3         5  
  3         612  
11             our %EXPORT_TAGS =
12             ('all' => [qw(compareExactly decomposeWidth foldCase mapSpace)]);
13             our @EXPORT_OK = @{$EXPORT_TAGS{'all'}};
14              
15             our $VERSION = '0.01';
16             our $XS_VERSION = $VERSION;
17             $VERSION = eval $VERSION; # see L
18              
19             require XSLoader;
20             XSLoader::load(__PACKAGE__, $XS_VERSION);
21              
22             1;
23             __END__