File Coverage

blib/lib/Bit/Util.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Bit::Util;
2              
3             our $VERSION = '0.02';
4              
5 1     1   27914 use strict;
  1         3  
  1         43  
6 1     1   5 use warnings;
  1         1  
  1         120  
7              
8             require Exporter;
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT_OK = qw(bu_first bu_last bu_count);
12              
13             require XSLoader;
14             XSLoader::load('Bit::Util', $VERSION);
15              
16             1;
17             __END__