File Coverage

blib/lib/Geest/Backend.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 Geest::Backend;
2 1     1   7 use Moo;
  1         3  
  1         11  
3              
4             has host => (
5             is => 'ro',
6             required => 1,
7             );
8              
9             has port => (
10             is => 'ro',
11             required => 1,
12             );
13              
14             has name => (
15             is => 'ro',
16             required => 1,
17             );
18              
19 1     1   410 no Moo;
  1         2  
  1         6  
20              
21             1;