File Coverage

blib/lib/Sparse.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 Sparse;
2              
3 1     1   27022 use 5.008;
  1         4  
  1         42  
4 1     1   7 use strict;
  1         2  
  1         37  
5 1     1   6 use warnings;
  1         7  
  1         52  
6              
7             require Exporter;
8 1     1   6 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
  1         2  
  1         164  
9              
10             @ISA = qw(Exporter);
11              
12             %EXPORT_TAGS = ();
13              
14             @EXPORT_OK = ();
15              
16             @EXPORT = ();
17              
18             our $VERSION = '0.03';
19              
20             1;
21             __END__