File Coverage

blib/lib/WeakRef/Auto.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             package WeakRef::Auto;
2              
3 7     7   197375 use 5.008_001;
  7         25  
  7         266  
4 7     7   38 use strict;
  7         16  
  7         370  
5              
6             our $VERSION = '0.02';
7              
8 7     7   33 use Exporter qw(import);
  7         17  
  7         436  
9             our @EXPORT = qw(autoweaken);
10              
11             sub autoweaken(\$);
12              
13 7     7   43 use XSLoader;
  7         13  
  7         765  
14             XSLoader::load(__PACKAGE__, $VERSION);
15              
16             1;
17             __END__