| blib/lib/App/ansicolumn/default.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 8 | 8 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 11 | 11 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package App::ansicolumn::default; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 2231 | use v5.14; | |||
| 1 | 4 | ||||||
| 4 | 1 | 1 | 4 | use warnings; | |||
| 1 | 2 | ||||||
| 1 | 24 | ||||||
| 5 | 1 | 1 | 4 | use utf8; | |||
| 1 | 2 | ||||||
| 1 | 4 | ||||||
| 6 | |||||||
| 7 | App::ansicolumn::Border->add_style( | ||||||
| 8 | star => { center => [ "★ ", "☆ " ] }, | ||||||
| 9 | square => { center => [ "■ ", "□ " ] }, | ||||||
| 10 | ); | ||||||
| 11 | |||||||
| 12 | 1; | ||||||
| 13 | |||||||
| 14 | __DATA__ |