File Coverage

blib/lib/FBP/Panel.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::Panel;
2              
3 4     4   1879 use Mouse;
  4         8  
  4         22  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Window';
8             with 'FBP::Children';
9              
10 4     4   1098 no Mouse;
  4         14  
  4         23  
11             __PACKAGE__->meta->make_immutable;
12              
13             1;