File Coverage

blib/lib/KelpX/Sweet/Model.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 17 17 100.0


line stmt bran cond sub pod time code
1             package KelpX::Sweet::Model;
2              
3 6     6   2229 use warnings;
  6         10  
  6         201  
4 6     6   26 use strict;
  6         11  
  6         159  
5 6     6   25 use true;
  6         7  
  6         38  
6              
7             sub import {
8 6     6   52 my ($class) = @_;
9 6         62 warnings->import();
10 6         69 strict->import();
11 6         22 true->import();
12             }
13              
14             1;
15             __END__