File Coverage

blib/lib/Proc/Wait3.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::Wait3;
2              
3 2     2   19710 use 5.006;
  2         8  
  2         78  
4 2     2   12 use strict;
  2         2  
  2         66  
5 2     2   10 use warnings;
  2         2  
  2         646  
6              
7             require Exporter;
8             require DynaLoader;
9              
10             our @ISA = qw(Exporter DynaLoader);
11             our @EXPORT = qw(wait3);
12             our $VERSION = '0.04';
13              
14             bootstrap Proc::Wait3 $VERSION;
15              
16             1;
17             __END__