blib/lib/FBP/TopLevelWindow.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::TopLevelWindow; | ||||||
2 | |||||||
3 | 4 | 4 | 1941 | use Mouse::Role; | |||
4 | 26 | ||||||
4 | 23 | ||||||
4 | |||||||
5 | our $VERSION = '0.41'; | ||||||
6 | |||||||
7 | has title => ( | ||||||
8 | is => 'ro', | ||||||
9 | isa => 'Str', | ||||||
10 | ); | ||||||
11 | |||||||
12 | has center => ( | ||||||
13 | is => 'ro', | ||||||
14 | isa => 'Str', | ||||||
15 | ); | ||||||
16 | |||||||
17 | has OnActivate => ( | ||||||
18 | is => 'ro', | ||||||
19 | isa => 'Str', | ||||||
20 | ); | ||||||
21 | |||||||
22 | has OnActivateApp => ( | ||||||
23 | is => 'ro', | ||||||
24 | isa => 'Str', | ||||||
25 | ); | ||||||
26 | |||||||
27 | has OnClose => ( | ||||||
28 | is => 'ro', | ||||||
29 | isa => 'Str', | ||||||
30 | ); | ||||||
31 | |||||||
32 | has OnHibernate => ( | ||||||
33 | is => 'ro', | ||||||
34 | isa => 'Str', | ||||||
35 | ); | ||||||
36 | |||||||
37 | has OnIconize => ( | ||||||
38 | is => 'ro', | ||||||
39 | isa => 'Str', | ||||||
40 | ); | ||||||
41 | |||||||
42 | has OnIdle => ( | ||||||
43 | is => 'ro', | ||||||
44 | isa => 'Str', | ||||||
45 | ); | ||||||
46 | |||||||
47 | 4 | 4 | 1345 | no Mouse::Role; | |||
4 | 7 | ||||||
4 | 15 | ||||||
48 | |||||||
49 | 1; |