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