File Coverage

blib/lib/AVLTree.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package AVLTree;
2              
3 4     4   319123 use 5.008;
  4         43  
4 4     4   21 use strict;
  4         6  
  4         90  
5 4     4   23 use warnings;
  4         8  
  4         336  
6              
7             our $VERSION = '0.1.7';
8             our $ENABLE_DEBUG = 0;
9              
10             require XSLoader;
11             XSLoader::load('AVLTree', $VERSION);
12              
13             1; # End of AVLTree
14             __END__