File Coverage

blib/lib/DDC.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 DDC;
2             our $AUTHORITY = 'cpan:GETTY';
3             # ABSTRACT: Visualize random bytes
4             $DDC::VERSION = '0.003';
5 1     1   1074 use strict;
  1         2  
  1         39  
6 1     1   3 use warnings;
  1         1  
  1         30  
7 1     1   3 use Data::Coloured qw( pc c );
  1         1  
  1         44  
8 1     1   3 use Exporter 'import';
  1         1  
  1         41  
9              
10             our @EXPORT = qw( pc c coloured poloured );
11              
12             1;
13              
14             __END__