File Coverage

blib/lib/Mu.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;
2              
3 1     1   21399 use strictures 2;
  1         7  
  1         37  
4 1     1   170 use Import::Into;
  1         2  
  1         19  
5              
6 1     1   567 use Moo ();
  1         2698  
  1         22  
7 1     1   6 use MooX::ShortHas ();
  1         2  
  1         76  
8              
9             our $VERSION = '1.191300'; # VERSION
10              
11             # ABSTRACT: Moo 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   9 my $caller = caller;
29 1         7 $_->import::into( $caller ) for qw( Moo MooX::ShortHas );
30             }
31              
32             1;
33              
34             __END__