File Coverage

blib/lib/Neo4j/Bolt/Path.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 12 12 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.40';
5              
6 6     6   42 use strict;
  6         11  
  6         178  
7 6     6   43 use warnings;
  6         12  
  6         377  
8              
9             sub as_simple {
10 1     1 1 3 my ($self) = @_;
11            
12 1         8 return [ @$self ];
13             }
14              
15             1;
16              
17             __END__