File Coverage

blib/lib/Digest/Trivial.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Digest::Trivial;
2              
3 3     3   98694 use strict;
  3         8  
  3         140  
4 3     3   16 use warnings;
  3         6  
  3         95  
5 3     3   15 no warnings 'syntax';
  3         20  
  3         113  
6              
7 3     3   16 use Exporter ();
  3         5  
  3         100  
8 3     3   3081 use AutoLoader;
  3         5543  
  3         17  
9              
10             our @ISA = qw (Exporter);
11             our @EXPORT = qw (trivial_x trivial_s);
12             our $VERSION = '2010011301';
13              
14             require XSLoader;
15             XSLoader::load ('Digest::Trivial', $VERSION);
16              
17             1;
18              
19             __END__