File Coverage

blib/lib/Geo/Hash/XS.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Geo::Hash::XS;
2 5     5   137719 use strict;
  5         13  
  5         201  
3 5     5   26 use XSLoader;
  5         8  
  5         135  
4 5     5   27 use Exporter 'import';
  5         12  
  5         397  
5             our @EXPORT_OK = qw( ADJ_TOP ADJ_RIGHT ADJ_LEFT ADJ_BOTTOM );
6             our %EXPORT_TAGS = (adjacent => \@EXPORT_OK);
7 5     5   140 use 5.008001;
  5         16  
  5         547  
8              
9             our $VERSION = '0.00015';
10             XSLoader::load __PACKAGE__, $VERSION;
11              
12 5     5 1 124 sub new { bless {}, shift }
13              
14             1;
15              
16             __END__