File Coverage

blib/lib/Sub/Prototype.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 1     1   43495 use strict;
  1         3  
  1         45  
2 1     1   6 use warnings;
  1         2  
  1         53  
3              
4             package Sub::Prototype;
5              
6             require 5.008001;
7              
8 1     1   6 use XSLoader;
  1         4  
  1         402  
9              
10             our $VERSION = '0.02';
11              
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14 1         14 use Sub::Exporter -setup => {
15             exports => ['set_prototype'],
16             groups => { default => ['set_prototype'] },
17 1     1   1579 };
  1         27730  
18              
19             1;
20              
21             __END__