File Coverage

blib/lib/Data/Object/Role/Indexed.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             # An Indexed Data Type Role for Perl 5
2             package Data::Object::Role::Indexed;
3              
4 87     87   97345 use 5.010;
  87         271  
  87         3505  
5 87     87   439 use Data::Object::Role;
  87         134  
  87         567  
6              
7             our $VERSION = '0.20'; # VERSION
8              
9             requires 'slice';
10              
11             1;