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.57';
5 11     11   5349 use strict;
  11         35  
  11         370  
6 11     11   71 use warnings;
  11         29  
  11         605  
7              
8             use Class::XSAccessor::Array
9 11         117 chained => 1,
10             constructor => 'new',
11             accessors => {
12             kind => 0,
13             part => 1,
14             filter => 2,
15 11     11   4539 };
  11         41137  
16              
17             1;
18              
19             __END__