File Coverage

blib/lib/String/Compare/ConstantTime.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::Compare::ConstantTime;
2              
3 3     3   1004 use strict;
  3         5  
  3         148  
4              
5             our $VERSION = '0.312';
6              
7             require XSLoader;
8             XSLoader::load('String::Compare::ConstantTime', $VERSION);
9              
10             require Exporter;
11 3     3   10 use base 'Exporter';
  3         3  
  3         310  
12             our @EXPORT_OK = qw(equals);
13              
14             ## equals is defined in ConstantTime.xs
15              
16             1;
17              
18             __END__