File Coverage

blib/lib/Geo/SpatialDB/Path.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::Path;
2             $Geo::SpatialDB::Path::VERSION = '0.000_001'; # TRIAL
3              
4 2     2   7 $Geo::SpatialDB::Path::VERSION = '0.000001';use Moo 2;
  2         24  
  2         7  
5 2     2   322 use namespace::clean;
  2         2  
  2         7  
6              
7             # ABSTRACT: A connected sequence of points on the map
8              
9             has id => ( is => 'rw' );
10             has seq => ( is => 'rw' );
11              
12             1;
13              
14             __END__