File Coverage

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


line stmt bran cond sub pod time code
1             package GIS::Distance::Fast::Null;
2 1     1   1028 use 5.008001;
  1         4  
3 1     1   7 use strictures 2;
  1         7  
  1         43  
4             our $VERSION = '0.14';
5              
6 1     1   651 use parent 'GIS::Distance::Formula';
  1         310  
  1         6  
7              
8 1     1   34996 use GIS::Distance::Fast;
  1         3  
  1         34  
9 1     1   8 use namespace::clean;
  1         3  
  1         12  
10              
11             *_distance = \&GIS::Distance::Fast::null_distance;
12              
13             1;
14             __END__