| 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 | 167016 | use strict; | |||
| 22 | 41 | ||||||
| 22 | 772 | ||||||
| 3 | 22 | 22 | 97 | use warnings; | |||
| 22 | 29 | ||||||
| 22 | 895 | ||||||
| 4 | |||||||
| 5 | our $VERSION = '0.0.37'; # VERSION | ||||||
| 6 | |||||||
| 7 | 22 | 22 | 79 | use Moo::Role; | |||
| 22 | 28 | ||||||
| 22 | 105 | ||||||
| 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__ |