File Coverage

lib/Neo4j/Types.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1 1     1   1356 use strict;
  1         2  
  1         63  
2 1     1   6 use warnings;
  1         2  
  1         42  
3              
4             package Neo4j::Types;
5             # ABSTRACT: Common Neo4j type system
6             $Neo4j::Types::VERSION = '1.00';
7              
8 1     1   348 use Neo4j::Types::Node;
  1         2  
  1         31  
9 1     1   346 use Neo4j::Types::Path;
  1         2  
  1         26  
10 1     1   367 use Neo4j::Types::Point;
  1         2  
  1         27  
11 1     1   345 use Neo4j::Types::Relationship;
  1         2  
  1         30  
12              
13             1;
14              
15             __END__