File Coverage

blib/lib/Neo4j/Bolt/Path.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Neo4j::Bolt::Path;
2             # ABSTRACT: Representation of Neo4j Path
3              
4             $Neo4j::Bolt::Path::VERSION = '0.4201';
5              
6 6     6   43 use strict;
  6         11  
  6         174  
7 6     6   47 use warnings;
  6         12  
  6         169  
8              
9 6     6   31 use parent 'Neo4j::Types::Path';
  6         10  
  6         39  
10              
11             sub as_simple {
12 1     1 1 3 my ($self) = @_;
13            
14 1         9 return [ @$self ];
15             }
16              
17             1;
18              
19             __END__