File Coverage

blib/lib/Algorithm/PageRank/XS.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Algorithm::PageRank::XS;
2              
3 2     2   49765 use 5.008005;
  2         95  
  2         86  
4 2     2   13 use strict;
  2         4  
  2         83  
5 2     2   10 use warnings;
  2         7  
  2         57  
6 2     2   12 use Carp;
  2         4  
  2         249  
7              
8             require Exporter;
9 2     2   1942 use AutoLoader;
  2         3351  
  2         12  
10              
11             our $VERSION = '0.04';
12              
13             require XSLoader;
14             XSLoader::load('Algorithm::PageRank::XS', $VERSION);
15              
16             1;
17              
18             __END__;