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 | 2257 | use v5.14; | |||
1 | 3 | ||||||
4 | 1 | 1 | 6 | use warnings; | |||
1 | 2 | ||||||
1 | 25 | ||||||
5 | 1 | 1 | 5 | use utf8; | |||
1 | 2 | ||||||
1 | 5 | ||||||
6 | |||||||
7 | App::ansicolumn::Border->add_style( | ||||||
8 | star => { center => [ "★ ", "☆ " ] }, | ||||||
9 | square => { center => [ "■ ", "□ " ] }, | ||||||
10 | ); | ||||||
11 | |||||||
12 | 1; | ||||||
13 | |||||||
14 | __DATA__ |