File Coverage

blib/lib/FBP/GenericDirCtrl.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::GenericDirCtrl;
2              
3 4     4   24 use Mouse;
  4         8  
  4         25  
4              
5             our $VERSION = '0.41';
6              
7             extends 'FBP::Control';
8             with 'FBP::TreeCtrlBase';
9              
10             has defaultfolder => (
11             is => 'ro',
12             isa => 'Str',
13             );
14              
15             has filter => (
16             is => 'ro',
17             isa => 'Str',
18             );
19              
20             has defaultfilter => (
21             is => 'ro',
22             isa => 'Str',
23             );
24              
25             has show_hidden => (
26             is => 'ro',
27             isa => 'Bool',
28             );
29              
30             has style => (
31             is => 'ro',
32             isa => 'Str',
33             );
34              
35 4     4   1689 no Mouse;
  4         9  
  4         17  
36             __PACKAGE__->meta->make_immutable;
37              
38             1;