File Coverage

blib/lib/Moo/Role/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::Role::Lax;
11              
12             #ABSTRACT: Loads Moo::Role without turning warnings to fatal.
13              
14              
15             our $VERSION = 2;
16 2     2   25849 use Moo::Role 2 ();
  2         34665  
  2         68  
17 2     2   686 use Import::Into;
  2         585  
  2         172  
18              
19 2     2   28 sub import { Moo::Role->import::into(caller, @_); return }
  2         4550  
20              
21             1;
22              
23             __END__