File Coverage

blib/lib/GIS/Distance/Fast.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package GIS::Distance::Fast;
2 2     2   47 use 5.008001;
  2         7  
3 2     2   12 use strictures 2;
  2         19  
  2         85  
4             our $VERSION = '0.14';
5              
6             our @ISA;
7              
8             eval {
9             require XSLoader;
10             XSLoader::load('GIS::Distance::Fast', $VERSION);
11             1;
12             } or do {
13             require DynaLoader;
14             push @ISA, 'DynaLoader';
15             bootstrap GIS::Distance::Fast $VERSION;
16             };
17              
18             1;
19             __END__