File Coverage

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.006'; # VERSION
4              
5             # ABSTRACT: object representing a geojson MultiPoint
6              
7 4     4   1820 use Moo;
  4         9  
  4         32  
8             extends 'Geo::JSON::Base';
9             with 'Geo::JSON::Role::Geometry';
10              
11 4     4   1724 use Geo::JSON::Types -types;
  4         11  
  4         51  
12              
13             has '+coordinates' => ( isa => Positions );
14              
15              
16             1;
17              
18             __END__