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.59';
3 34     34   9289 use strict;
  34         40  
  34         791  
4 34     34   104 use warnings;
  34         36  
  34         2541  
5              
6             # ABSTRACT: base class for os-specific daemon methods
7              
8             sub new {
9 42     42 1 290 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__