File Coverage

blib/lib/Class/Private.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 Class::Private;
2              
3 2     2   58303 use 5.010;
  2         8  
  2         84  
4 2     2   13 use strict;
  2         3  
  2         84  
5 2     2   11 use warnings;
  2         8  
  2         71  
6 2     2   13 use XSLoader;
  2         5  
  2         132  
7              
8             our $VERSION = '0.05';
9              
10             XSLoader::load('Class::Private', $VERSION);
11              
12             1; # End of Class::Private
13              
14             __END__