File Coverage

blib/lib/String/Compare/ConstantTime.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package String::Compare::ConstantTime;
2              
3 3     3   1472 use strict;
  3         18  
  3         145  
4 3     3   17 use warnings;
  3         4  
  3         178  
5              
6             our $VERSION = '0.320';
7              
8             require XSLoader;
9             XSLoader::load('String::Compare::ConstantTime', $VERSION);
10              
11             require Exporter;
12 3     3   15 use base 'Exporter';
  3         6  
  3         450  
13             our @EXPORT_OK = qw(equals);
14              
15             ## equals is defined in ConstantTime.xs
16              
17             1;
18              
19             __END__