File Coverage

blib/lib/FBP/Form.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::Form;
2              
3 4     4   2654 use Mouse::Role;
  4         7  
  4         29  
4              
5             our $VERSION = '0.41';
6              
7             with 'FBP::Children';
8              
9             has OnInitDialog => (
10             is => 'ro',
11             isa => 'Str',
12             );
13              
14 4     4   1112 no Mouse::Role;
  4         7  
  4         17  
15              
16             1;