File Coverage

blib/lib/Catmandu/Fix/Namespace.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Catmandu::Fix::Namespace;
2              
3 28     28   15032 use Catmandu::Sane;
  28         78  
  28         187  
4              
5             our $VERSION = '1.2020';
6              
7 28     28   236 use Moo::Role;
  28         71  
  28         251  
8 28     28   12461 use namespace::clean;
  28         72  
  28         182  
9              
10             requires 'load';
11              
12             has name => (is => 'ro', required => 1);
13              
14             1;