File Coverage

blib/lib/UID2/Client/IdentityType.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package UID2::Client::IdentityType;
2 3     3   11613 use strict;
  3         6  
  3         70  
3 3     3   12 use warnings;
  3         5  
  3         62  
4 3     3   13 use Exporter 'import';
  3         4  
  3         77  
5              
6             use constant {
7 3         207 EMAIL => 0,
8             PHONE => 1,
9 3     3   13 };
  3         4  
10              
11             our @EXPORT_OK = qw(
12             EMAIL
13             PHONE
14             );
15              
16             1;
17             __END__