File Coverage

blib/lib/Geo/JSON/Role/Geometry.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::Role::Geometry;
2              
3             our $VERSION = '0.007';
4              
5             # ABSTRACT: Moo::Role representing behaviour of a geojson Geometry object
6              
7 6     6   3160 use Moo::Role;
  6         15  
  6         44  
8              
9 6     6   1935 use Types::Standard qw/ Any /;
  6         10  
  6         59  
10              
11             has coordinates => ( is => 'ro', isa => Any, required => 1 );
12              
13             1;
14              
15             __END__