| blib/lib/Term/ANSIColor/Gradients.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 10 | 10 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 4 | 4 | 100.0 |
| pod | 1 | 1 | 100.0 |
| total | 15 | 15 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Term::ANSIColor::Gradients ; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 159490 | use strict ; | |||
| 1 | 3 | ||||||
| 1 | 41 | ||||||
| 4 | 1 | 1 | 6 | use warnings ; | |||
| 1 | 8 | ||||||
| 1 | 99 | ||||||
| 5 | 1 | 1 | 7 | use Exporter 'import' ; | |||
| 1 | 2 | ||||||
| 1 | 130 | ||||||
| 6 | |||||||
| 7 | our $VERSION = '0.10' ; | ||||||
| 8 | our @EXPORT_OK = qw(list_groups) ; | ||||||
| 9 | |||||||
| 10 | sub list_groups | ||||||
| 11 | { | ||||||
| 12 | 1 | 1 | 1 | 514658 | return qw(Classic Extended Scientific Sequential Diverging Accessibility Artistic) ; | ||
| 13 | } | ||||||
| 14 | |||||||
| 15 | 1 ; | ||||||
| 16 | |||||||
| 17 | __END__ |