File Coverage

blib/lib/Acme/Pointer.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Acme::Pointer;
2 2     2   1017 use 5.008_001;
  2         5  
3 2     2   7 use strict;
  2         3  
  2         27  
4 2     2   8 use warnings;
  2         2  
  2         63  
5              
6             our $VERSION = "0.03";
7              
8 2     2   8 use XSLoader;
  2         2  
  2         116  
9             XSLoader::load(__PACKAGE__, $VERSION);
10              
11             require Exporter;
12             our @ISA = qw/Exporter/;
13             our @EXPORT = qw/deref pointer/;
14              
15             1;
16             __END__