File Coverage

blib/lib/FBP/NotebookPage.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package FBP::NotebookPage;
2              
3 4     4   21 use Mouse;
  4         10  
  4         22  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Object';
8             with 'FBP::Children';
9              
10             has label => (
11             is => 'ro',
12             isa => 'Str',
13             );
14              
15             has bitmap => (
16             is => 'ro',
17             isa => 'Str',
18             );
19              
20             has select => (
21             is => 'ro',
22             isa => 'Bool',
23             );
24              
25             1;