File Coverage

blib/lib/FBP/SizerItem.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package FBP::SizerItem;
2              
3 4     4   20 use Mouse;
  4         9  
  4         28  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Object';
8             with 'FBP::Children';
9             with 'FBP::SizerItemBase';
10              
11             has proportion => (
12             is => 'ro',
13             isa => 'Int',
14             );
15              
16 4     4   1295 no Mouse;
  4         7  
  4         21  
17             __PACKAGE__->meta->make_immutable;
18              
19             1;