File Coverage

blib/lib/PDF/Make.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package PDF::Make;
2              
3 90     90   1379277 use strict;
  90         131  
  90         2547  
4 90     90   336 use warnings;
  90         191  
  90         4603  
5              
6             our $VERSION = '0.03';
7              
8 90     90   389 use DynaLoader;
  90         129  
  90         6753  
9             our @ISA = ('DynaLoader');
10              
11             # Make our C symbols globally visible so downstream XS modules in
12             # Semantic can #include "pdfmake.h" and link against us.
13 90     90 1 285304 sub dl_load_flags { 0x01 }
14              
15             bootstrap PDF::Make $VERSION;
16              
17             1;
18              
19             __END__