File Coverage

blib/lib/UID2/Client/IdentityScope.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::IdentityScope;
2 3     3   16 use strict;
  3         6  
  3         73  
3 3     3   12 use warnings;
  3         4  
  3         61  
4 3     3   12 use Exporter 'import';
  3         4  
  3         75  
5              
6             use constant {
7 3         215 UID2 => 0,
8             EUID => 1,
9 3     3   11 };
  3         6  
10              
11             our @EXPORT_OK = qw(
12             UID2
13             EUID
14             );
15              
16             1;
17             __END__