File Coverage

blib/lib/DDP.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 DDP;
2 1     1   842 use strict;
  1         2  
  1         40  
3 1     1   5 use warnings;
  1         2  
  1         65  
4 1     1   583 use Data::Printer;
  1         4  
  1         7  
5              
6             BEGIN {
7 1     1   8 push our @ISA, 'Data::Printer';
8 1         2 our $VERSION = '1.002001';
9 1         62 $VERSION = eval $VERSION;
10             }
11             1;
12             __END__
13              
14             =head1 NAME
15              
16             DDP - Data::Printer shortcut for faster debugging
17              
18             =head1 SYNOPSIS
19              
20             use DDP; p $my_data;
21              
22             =head1 DESCRIPTION
23              
24             Tired of typing C<use Data::Printer> every time? C<DDP> lets you quickly call
25             your favorite variable dumper!
26              
27             It behaves exactly like L<Data::Printer> - it is, indeed, just an alias to it :)
28              
29             Happy debugging!
30              
31             =head1 SEE ALSO
32              
33             L<Data::Printer>