File Coverage

blib/lib/Data/DPath/Step.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Data::DPath::Step;
2             our $AUTHORITY = 'cpan:SCHWIGON';
3             # ABSTRACT: Abstraction for a single Step through a Path
4             $Data::DPath::Step::VERSION = '0.59';
5 12     12   6305 use strict;
  12         27  
  12         354  
6 12     12   60 use warnings;
  12         33  
  12         509  
7              
8             use Class::XSAccessor::Array
9 12         126 chained => 1,
10             constructor => 'new',
11             accessors => {
12             kind => 0,
13             part => 1,
14             filter => 2,
15 12     12   6068 };
  12         46704  
16              
17             1;
18              
19             __END__