blib/lib/DDC.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 13 | 13 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 18 | 18 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package DDC; | ||||||
2 | BEGIN { | ||||||
3 | 1 | 1 | 978 | $DDC::AUTHORITY = 'cpan:GETTY'; | |||
4 | } | ||||||
5 | # ABSTRACT: Visualize random bytes | ||||||
6 | $DDC::VERSION = '0.002'; | ||||||
7 | 1 | 1 | 7 | use strict; | |||
1 | 1 | ||||||
1 | 32 | ||||||
8 | 1 | 1 | 3 | use warnings; | |||
1 | 1 | ||||||
1 | 26 | ||||||
9 | 1 | 1 | 3 | use Data::Coloured qw( pc c ); | |||
1 | 1 | ||||||
1 | 43 | ||||||
10 | 1 | 1 | 6 | use Exporter 'import'; | |||
1 | 1 | ||||||
1 | 58 | ||||||
11 | |||||||
12 | our @EXPORT = qw( pc c coloured poloured ); | ||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |