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