File Coverage

blib/lib/App/OverWatch/Config.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package App::OverWatch::Config;
2             # ABSTRACT: Config object
3              
4 6     6   23 use strict;
  6         7  
  6         176  
5 6     6   23 use warnings;
  6         6  
  6         109  
6 6     6   20 use utf8;
  6         7  
  6         25  
7              
8 6     6   3205 use Moo;
  6         69922  
  6         28  
9 6     6   9822 use namespace::clean;
  6         66061  
  6         33  
10              
11             has db_type => ( is => 'ro' );
12             has dsn => ( is => 'ro' );
13             has user => ( is => 'ro' );
14             has password => ( is => 'ro' );
15              
16             1;
17              
18             __END__