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   45436 use 5.008;
  3         10  
7 3     3   15 use strict;
  3         8  
  3         80  
8 3     3   13 use warnings;
  3         6  
  3         101  
9              
10 3     3   15 use base qw(Exporter);
  3         6  
  3         658  
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__