File Coverage

mock/CPAN/Mini.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package CPAN::Mini;
2              
3 4     4   59 use 5.008;
  4         10  
  4         138  
4              
5 4     4   15 use strict;
  4         9  
  4         92  
6 4     4   14 use warnings;
  4         5  
  4         74  
7              
8 4     4   14 use Carp ();
  4         5  
  4         211  
9              
10             our $VERSION = '0.000_194';
11              
12             our $LOCAL ||= 'mock/repos';
13              
14             sub read_config {
15             return (
16 5     5 1 28 local => $LOCAL,
17             );
18             }
19              
20             1;
21              
22             __END__