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   46383 use strictures 2;
  1         5  
  1         39  
4 1     1   401 use Import::Into;
  1         1797  
  1         22  
5              
6 1     1   303 use Moo::Role ();
  1         10534  
  1         31  
7 1     1   257 use MooX::ShortHas ();
  1         428  
  1         55  
8              
9             our $VERSION = '1.172231'; # 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   7 my $caller = caller;
29 1         6 $_->import::into( $caller ) for qw( Moo::Role MooX::ShortHas );
30             }
31              
32             1;
33              
34             __END__