File Coverage

lib/Neo4j/Types/Point.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 100.0
total 15 16 100.0


line stmt bran cond sub pod time code
1 5     5   2131 use v5.10.1;
  5         25  
2 5     5   25 use strict;
  5         24  
  5         136  
3 5     5   20 use warnings;
  5         7  
  5         742  
4              
5             package Neo4j::Types::Point;
6             # ABSTRACT: Represents a Neo4j spatial point value
7             $Neo4j::Types::Point::VERSION = '2.00';
8              
9             sub new {
10             # uncoverable pod
11 1     1 0 860 warnings::warnif deprecated => "Deprecated: Use Neo4j::Types::Generic::Point->new() instead";
12            
13 1         112 require Neo4j::Types::Generic::Point;
14 1         5 &Neo4j::Types::Generic::Point::new;
15             }
16              
17              
18             1;