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.58';
5 12     12   6037 use strict;
  12         29  
  12         322  
6 12     12   55 use warnings;
  12         23  
  12         489  
7              
8             use Class::XSAccessor::Array
9 12         118 chained => 1,
10             constructor => 'new',
11             accessors => {
12             kind => 0,
13             part => 1,
14             filter => 2,
15 12     12   5408 };
  12         41775  
16              
17             1;
18              
19             __END__