File Coverage

blib/lib/FBP/Listbook.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::Listbook;
2              
3 4     4   19 use Mouse;
  4         5  
  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 OnListbookPageChanged => (
16             is => 'ro',
17             isa => 'Str',
18             );
19              
20             has OnListbookPageChanging => (
21             is => 'ro',
22             isa => 'Str',
23             );
24              
25 4     4   1331 no Mouse;
  4         10  
  4         27  
26             __PACKAGE__->meta->make_immutable;
27              
28             1;