File Coverage

blib/lib/Mu/Role.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 Mu::Role;
2              
3 1     1   72990 use strictures 2;
  1         61  
  1         51  
4 1     1   701 use Import::Into;
  1         2789  
  1         27  
5              
6 1     1   509 use Moo::Role ();
  1         14905  
  1         21  
7 1     1   444 use MooX::ShortHas ();
  1         601  
  1         77  
8              
9             our $VERSION = '1.191300'; # VERSION
10              
11             # ABSTRACT: Moo::Role but with less typing
12              
13             #
14             # This file is part of Mu
15             #
16             #
17             # Christian Walde has dedicated the work to the Commons by waiving all of his
18             # or her rights to the work worldwide under copyright law and all related or
19             # neighboring legal rights he or she had in the work, to the extent allowable by
20             # law.
21             #
22             # Works under CC0 do not require attribution. When citing the work, you should
23             # not imply endorsement by the author.
24             #
25              
26              
27             sub import {
28 1     1   8 my $caller = caller;
29 1         7 $_->import::into( $caller ) for qw( Moo::Role MooX::ShortHas );
30             }
31              
32             1;
33              
34             __END__