File Coverage

blib/lib/CDD.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package CDD;
2 2     2   1784 use 5.010;
  2         7  
3 2     2   12 use strict;
  2         6  
  2         42  
4 2     2   11 use warnings;
  2         3  
  2         109  
5              
6             our $VERSION = "0.04";
7              
8 2     2   15 use Contextual::Diag ();
  2         4  
  2         50  
9              
10 2     2   10 use Exporter;
  2         12  
  2         215  
11             our @ISA = qw(Exporter);
12             our @EXPORT = qw(cdd);
13              
14             *cdd = *Contextual::Diag::contextual_diag;
15              
16             1;
17             __END__