File Coverage

blib/lib/Proc/Launcher/Roles/Launchable.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 Proc::Launcher::Roles::Launchable;
2 22     22   176655 use strict;
  22         41  
  22         787  
3 22     22   96 use warnings;
  22         27  
  22         923  
4              
5             our $VERSION = '0.0.36'; # VERSION
6              
7 22     22   86 use Moo::Role;
  22         29  
  22         110  
8              
9             requires 'start';
10             requires 'stop';
11             #requires 'restart';
12             requires 'force_stop';
13              
14             requires 'is_running';
15              
16              
17              
18             1;
19              
20             __END__