File Coverage

blib/lib/FBP/ColourPickerCtrl.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::ColourPickerCtrl;
2              
3 4     4   20 use Mouse;
  4         6  
  4         23  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Control';
8              
9             has colour => (
10             is => 'ro',
11             isa => 'Str',
12             );
13              
14             has style => (
15             is => 'ro',
16             isa => 'Str',
17             );
18              
19             has OnColourChanged => (
20             is => 'ro',
21             isa => 'Str',
22             );
23              
24 4     4   1486 no Mouse;
  4         7  
  4         17  
25             __PACKAGE__->meta->make_immutable;
26              
27             1;