File Coverage

blib/lib/Shannon/Entropy/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 Shannon::Entropy::XS;
2              
3 2     2   273413 use 5.006;
  2         9  
4 2     2   14 use strict;
  2         4  
  2         86  
5 2     2   11 use warnings;
  2         6  
  2         144  
6              
7 2     2   13 use base qw/Import::Export/;
  2         3  
  2         1263  
8            
9             our $VERSION = '1.11';
10            
11             our %EX = (
12             entropy => [qw/all/]
13             );
14              
15             require XSLoader;
16             XSLoader::load("Shannon::Entropy::XS", $VERSION);
17              
18             1;
19              
20             __END__