File Coverage

blib/lib/String/DiffLine.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 String::DiffLine;
2              
3 1     1   436 use strict;
  1         1  
  1         34  
4 1     1   6 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         1  
  1         149  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11              
12             @EXPORT = qw();
13              
14             @EXPORT_OK=qw(diffline);
15              
16             $VERSION = '0.03';
17              
18             bootstrap String::DiffLine $VERSION;
19              
20             # Preloaded methods go here.
21              
22             # Autoload methods go after =cut, and are processed by the autosplit program.
23              
24             1;
25             __END__