blib/lib/Geo/JSON/MultiPoint.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::MultiPoint; | ||||||
2 | |||||||
3 | our $VERSION = '0.007'; | ||||||
4 | |||||||
5 | # ABSTRACT: object representing a geojson MultiPoint | ||||||
6 | |||||||
7 | 4 | 4 | 1739 | use Moo; | |||
4 | 9 | ||||||
4 | 28 | ||||||
8 | extends 'Geo::JSON::Base'; | ||||||
9 | with 'Geo::JSON::Role::Geometry'; | ||||||
10 | |||||||
11 | 4 | 4 | 1619 | use Geo::JSON::Types -types; | |||
4 | 9 | ||||||
4 | 44 | ||||||
12 | |||||||
13 | has '+coordinates' => ( isa => Positions ); | ||||||
14 | |||||||
15 | 1; | ||||||
16 | |||||||
17 | __END__ |