File Coverage

blib/lib/Data/Object/Role/Keyed.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             # A Keyed Data Type Role for Perl 5
2             package Data::Object::Role::Keyed;
3              
4 42     42   50352 use 5.010;
  42         206  
  42         1630  
5 42     42   199 use Data::Object::Role;
  42         60  
  42         293  
6              
7             our $VERSION = '0.20'; # VERSION
8              
9             requires 'invert';
10              
11             1;