File Coverage

blib/lib/Data/UUID.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 Data::UUID;
2              
3 4     4   282895 use strict;
  4         35  
  4         124  
4              
5 4     4   26 use Carp;
  4         11  
  4         596  
6              
7             require Exporter;
8             require DynaLoader;
9             require Digest::MD5;
10              
11             our @ISA = qw(Exporter DynaLoader);
12             our @EXPORT = qw(
13             NameSpace_DNS
14             NameSpace_OID
15             NameSpace_URL
16             NameSpace_X500
17             );
18             our $VERSION = '1.226';
19              
20             bootstrap Data::UUID $VERSION;
21              
22             1;
23             __END__