File Coverage

lib/Neo4j/Types.pm
Criterion Covered Total %
statement 29 29 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 39 39 100.0


line stmt bran cond sub pod time code
1 1     1   361340 use v5.10.1;
  1         3  
2 1     1   4 use strict;
  1         0  
  1         31  
3 1     1   3 use warnings;
  1         1  
  1         68  
4              
5             package Neo4j::Types;
6             # ABSTRACT: Common Neo4j type system
7             $Neo4j::Types::VERSION = '2.00';
8              
9 1     1   264 use Neo4j::Types::ByteArray;
  1         3  
  1         22  
10 1     1   305 use Neo4j::Types::DateTime;
  1         2  
  1         24  
11 1     1   243 use Neo4j::Types::Duration;
  1         1  
  1         21  
12 1     1   333 use Neo4j::Types::Node;
  1         2  
  1         33  
13 1     1   256 use Neo4j::Types::Path;
  1         2  
  1         22  
14 1     1   282 use Neo4j::Types::Point;
  1         2  
  1         21  
15 1     1   253 use Neo4j::Types::Relationship;
  1         2  
  1         23  
16              
17             1;