| blib/lib/Geo/JSON/LineString.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::JSON::LineString; | ||||||
| 2 | |||||||
| 3 | our $VERSION = '0.007'; | ||||||
| 4 | |||||||
| 5 | 4 | 4 | 3547 | use Moo; | |||
| 4 | 8 | ||||||
| 4 | 32 | ||||||
| 6 | extends 'Geo::JSON::Base'; | ||||||
| 7 | with 'Geo::JSON::Role::Geometry'; | ||||||
| 8 | |||||||
| 9 | 4 | 4 | 1565 | use Geo::JSON::Types -types; | |||
| 4 | 8 | ||||||
| 4 | 54 | ||||||
| 10 | |||||||
| 11 | has '+coordinates' => ( isa => LineString ); | ||||||
| 12 | |||||||
| 13 | 1; | ||||||
| 14 | |||||||
| 15 | __END__ |