File Coverage

blib/lib/Role/Commons/ObjectID.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1 1     1   398 use 5.008;
  1         3  
  1         33  
2 1     1   4 use strict;
  1         1  
  1         35  
3 1     1   4 use warnings;
  1         1  
  1         31  
4              
5             package Role::Commons::ObjectID;
6              
7             BEGIN {
8 1     1   3 use Moo::Role;
  1         1  
  1         5  
9 1     1   234 $Role::Commons::ObjectID::AUTHORITY = 'cpan:TOBYINK';
10 1         21 $Role::Commons::ObjectID::VERSION = '0.104';
11             }
12              
13             # deliberately load this *after* Moo::Role
14 1     1   454 use Object::ID qw( object_id );
  1         4183  
  1         5  
15              
16             our $setup_for_class = sub {
17             my ($role, $package, %args) = @_;
18             };
19              
20             1;
21              
22             __END__