File Coverage

blib/lib/Bubblegum/Object/Role/Indexed.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 Bubblegum::Object::Role::Indexed;
2              
3 36     36   16139 use 5.10.0;
  36         102  
  36         1558  
4 36     36   160 use namespace::autoclean;
  36         56  
  36         205  
5              
6 36     36   2016 use Bubblegum::Role 'requires', 'with';
  36         60  
  36         204  
7              
8             with 'Bubblegum::Object::Role::Collection';
9              
10             our $VERSION = '0.45'; # VERSION
11              
12             requires 'slice';
13              
14             1;