File Coverage

blib/lib/Geo/SpatialDB/RouteSegment.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::RouteSegment;
2             $Geo::SpatialDB::RouteSegment::VERSION = '0.000_001'; # TRIAL
3              
4 2     2   8 $Geo::SpatialDB::RouteSegment::VERSION = '0.000001';use Moo 2;
  2         29  
  2         9  
5 2     2   347 use namespace::clean;
  2         2  
  2         8  
6              
7             # ABSTRACT: A piece of a Route, represented by a contiguous sequence of points
8              
9             extends 'Geo::SpatialDB::Entity';
10              
11             has path => ( is => 'rw' );
12             has oneway => ( is => 'rw' );
13             has lanes => ( is => 'rw' );
14             has speed => ( is => 'rw' );
15             has routes => ( is => 'rw' );
16              
17             1;
18              
19             __END__