File Coverage

blib/lib/Worlogog/Restart/Restart.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Worlogog::Restart::Restart;
2              
3 2     2   12 use warnings;
  2         3  
  2         74  
4 2     2   11 use strict;
  2         3  
  2         101  
5              
6             our $VERSION = '0.01';
7              
8 2     2   2222 use Moo;
  2         39085  
  2         12  
9              
10             for (qw(name code)) {
11             has $_ => (
12             is => 'ro',
13             );
14             }
15              
16             'ok'
17              
18             __END__