File Coverage

lib/Ubic/Daemon/OS.pm
Criterion Covered Total %
statement 7 11 63.6
branch n/a
condition n/a
subroutine 3 7 42.8
pod 5 5 100.0
total 15 23 65.2


line stmt bran cond sub pod time code
1             package Ubic::Daemon::OS;
2             $Ubic::Daemon::OS::VERSION = '1.60';
3 33     33   8712 use strict;
  33         37  
  33         724  
4 33     33   88 use warnings;
  33         33  
  33         2500  
5              
6             # ABSTRACT: base class for os-specific daemon methods
7              
8             sub new {
9 41     41 1 268 return bless {} => shift;
10             }
11              
12             sub pid2guid {
13 0     0 1   die 'not implemented';
14             }
15              
16             sub pid2cmd {
17 0     0 1   die 'not implemented';
18             }
19              
20             sub close_all_fh {
21 0     0 1   die 'not implemented';
22             }
23              
24             sub pid_exists {
25 0     0 1   die 'not implemented';
26             }
27              
28              
29             1;
30              
31             __END__