File Coverage

blib/lib/Moo/Lax.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of Moo-Lax
3             #
4             # This software is Copyright (c) 2014 by Damien Krotkine.
5             #
6             # This is free software, licensed under:
7             #
8             # The Artistic License 2.0 (GPL Compatible)
9             #
10             package Moo::Lax;
11              
12             #ABSTRACT: Loads Moo without turning warnings to fatal.
13              
14              
15             our $VERSION = 2;
16 2     2   44218 use Moo 2 ();
  2         24455  
  2         50  
17 2     2   8717 use Import::Into;
  2         834  
  2         100  
18              
19 2     2   25 sub import { Moo->import::into(caller, @_); return }
  2         5777  
20              
21             1;
22              
23             __END__