File Coverage

blib/lib/Data/DPath/Attrs.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::Attrs;
2             our $AUTHORITY = 'cpan:SCHWIGON';
3             # ABSTRACT: Abstraction for internal attributes attached to a point
4             $Data::DPath::Attrs::VERSION = '0.60';
5 18     18   357753 use strict;
  18         38  
  18         770  
6 18     18   89 use warnings;
  18         30  
  18         1268  
7              
8             use Class::XSAccessor # ::Array
9 18         153 chained => 1,
10             constructor => 'new',
11 18     18   491 accessors => [qw( key idx )];
  18         2171  
12              
13             1;
14              
15             __END__