File Coverage

blib/lib/Heap/Simple/XS.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package Heap::Simple::XS;
2 5     5   153249 use strict;
  5         13  
  5         177  
3             # use warnings;
4 5     5   25 use vars qw($VERSION);
  5         10  
  5         449  
5              
6             $VERSION = "0.10";
7              
8             require XSLoader;
9             XSLoader::load('Heap::Simple::XS', $VERSION);
10              
11             sub implementation() {
12 365     365 0 21925667 return __PACKAGE__;
13             }
14              
15             1;
16             __END__