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   2338 use warnings;
  6         12  
  6         234  
4 6     6   24 use strict;
  6         6  
  6         132  
5 6     6   22 use true;
  6         8  
  6         40  
6              
7             sub import {
8 6     6   46 my ($class) = @_;
9 6         54 warnings->import();
10 6         61 strict->import();
11 6         88 true->import();
12             }
13              
14             1;
15             __END__