File Coverage

blib/lib/FBP/FlexGridSizerBase.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::FlexGridSizerBase;
2              
3 4     4   2195 use Mouse::Role;
  4         9  
  4         30  
4              
5             our $VERSION = '0.41';
6              
7             has vgap => (
8             is => 'ro',
9             isa => 'Int',
10             required => 1,
11             );
12              
13             has hgap => (
14             is => 'ro',
15             isa => 'Int',
16             required => 1,
17             );
18              
19             has growablerows => (
20             is => 'ro',
21             isa => 'Str',
22             default => '',
23             );
24              
25             has growablecols => (
26             is => 'ro',
27             isa => 'Str',
28             default => '',
29             );
30              
31             has flexible_direction => (
32             is => 'ro',
33             isa => 'Str',
34             );
35              
36             has non_flexible_grow_mode => (
37             is => 'ro',
38             isa => 'Str',
39             );
40              
41 4     4   1363 no Mouse::Role;
  4         9  
  4         18  
42              
43             1;