File Coverage

blib/lib/Role/Commons/ObjectID.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Role::Commons::ObjectID;
2              
3 1     1   1222 use strict;
  1         3  
  1         38  
4 1     1   6 use warnings;
  1         1  
  1         33  
5 1     1   6 use Moo::Role;
  1         2  
  1         11  
6 1     1   1933 use Object::ID qw( object_id );
  1         9498  
  1         8  
7              
8             BEGIN {
9 1     1   69 $Role::Commons::ObjectID::AUTHORITY = 'cpan:TOBYINK';
10 1         59 $Role::Commons::ObjectID::VERSION = '0.102';
11             }
12              
13             our $setup_for_class = sub {
14             my ($role, $package, %args) = @_;
15             };
16              
17             1;
18              
19             __END__