File Coverage

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