File Coverage

blib/lib/Proc/Launcher/Roles/Launchable.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Proc::Launcher::Roles::Launchable;
2 22     22   14394 use strict;
  22         202  
  22         698  
3 22     22   118 use warnings;
  22         30  
  22         966  
4              
5             our $VERSION = '0.0.35'; # VERSION
6              
7 22     22   19093 use Mouse::Role;
  22         30949  
  22         98  
8              
9             requires 'start';
10             requires 'stop';
11             #requires 'restart';
12             requires 'force_stop';
13              
14             requires 'is_running';
15              
16              
17 22     22   7496 no Mouse::Role;
  22         44  
  22         100  
18              
19             1;
20              
21             __END__