File Coverage

blib/lib/String/CP1251.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 String::CP1251;
2              
3 1     1   28460 use strict;
  1         3  
  1         34  
4 1     1   5 use warnings;
  1         2  
  1         97  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             our @EXPORT_OK = qw(lc uc);
11              
12             our $VERSION = '0.01';
13              
14             require XSLoader;
15             XSLoader::load('String::CP1251', $VERSION);
16              
17             # Preloaded methods go here.
18              
19             1;
20             __END__