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 5     5   16 use strict;
  5         6  
  5         131  
5 5     5   20 use warnings;
  5         6  
  5         80  
6 5     5   13 use utf8;
  5         5  
  5         17  
7              
8 5     5   2415 use Moo;
  5         57486  
  5         23  
9 5     5   8148 use namespace::clean;
  5         43834  
  5         24  
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__