File Coverage

blib/lib/Geo/SpatialDB/Area.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Geo::SpatialDB::Area;
2             $Geo::SpatialDB::Area::VERSION = '0.000_001'; # TRIAL
3              
4 2     2   15 $Geo::SpatialDB::Area::VERSION = '0.000001';use Moo 2;
  2         24  
  2         8  
5 2     2   331 use namespace::clean;
  2         2  
  2         7  
6              
7             # ABSTRACT: Object representing (possibly non-contiguous area) on the map
8              
9             extends 'Geo::SpatialDB::Entity';
10              
11             has polygons => ( is => 'rw' );
12             has approx => ( is => 'rw' );
13              
14             1;
15              
16             __END__