File Coverage

blib/lib/Unix/Pledge.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Unix::Pledge;
2              
3 9     9   618030 use strict;
  9         27  
  9         783  
4              
5             require Exporter;
6              
7             our @ISA = qw{Exporter};
8             our @EXPORT = qw{pledge};
9              
10             our $VERSION = '0.004';
11              
12             require XSLoader;
13             XSLoader::load('Unix::Pledge', $VERSION);
14              
15             1;
16             __END__