blib/lib/Geo/SpatialDB/Route.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::Route; | ||||||
2 | $Geo::SpatialDB::Route::VERSION = '0.000_001'; # TRIAL | ||||||
3 | |||||||
4 | 2 | 2 | 7 | $Geo::SpatialDB::Route::VERSION = '0.000001';use Moo 2; | |||
2 | 24 | ||||||
2 | 8 | ||||||
5 | 2 | 2 | 342 | use namespace::clean; | |||
2 | 2 | ||||||
2 | 8 | ||||||
6 | |||||||
7 | # ABSTRACT: A logical entity encompasing one or more RouteSegments | ||||||
8 | |||||||
9 | extends 'Geo::SpatialDB::Entity'; | ||||||
10 | |||||||
11 | has segments => ( is => 'rw' ); | ||||||
12 | |||||||
13 | 1; | ||||||
14 | |||||||
15 | __END__ |