File Coverage

blib/lib/String/Mask/XS.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             package String::Mask::XS;
2 3     3   356610 use 5.006;
  3         13  
3 3     3   20 use strict;
  3         19  
  3         113  
4 3     3   15 use warnings;
  3         23  
  3         329  
5             our $VERSION = '1.05';
6 3     3   20 use base 'Import::Export';
  3         10  
  3         1693  
7             our %EX = (
8             mask => [qw/all/]
9             );
10             require XSLoader;
11             XSLoader::load('String::Mask::XS', $VERSION);
12              
13             1;
14              
15             __END__