File Coverage

blib/lib/BorderStyle/Test/Labeled.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package BorderStyle::Test::Labeled;
2              
3             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
4             our $DATE = '2021-02-06'; # DATE
5             our $DIST = 'BorderStyleBase'; # DIST
6             our $VERSION = '0.009'; # VERSION
7              
8 1     1   462 use strict;
  1         2  
  1         29  
9 1     1   5 use warnings;
  1         2  
  1         23  
10 1     1   588 use utf8;
  1         14  
  1         5  
11              
12 1     1   68 use parent 'BorderStyleBase';
  1         2  
  1         7  
13              
14             our %BORDER = (
15             v => 2,
16             summary => 'A border style that uses labeled characters as described in specification, to show which character goes where',
17             chars => [ # y
18             # 0 1 2 3 4 5 6 7 <-- x
19             ['A', 'B', 'C', 'D'], # 0
20             ['E', 'F', 'G'], # 1
21             ['H', 'I', 'J', 'K', 'a', 'b'], # 2
22             ['L', 'M', 'N'], # 3
23             ['O', 'P', 'Q', 'R', 'e', 'f', 'g', 'h'], # 4
24             ['S', 'T', 'U', 'V'], # 5
25              
26             ['Ȧ', 'Ḃ', 'Ċ', 'Ḋ'], # 6
27             ['Ṣ', 'Ṭ', 'Ụ', 'Ṿ'], # 7
28             ],
29             utf8 => 1,
30             );
31              
32             1;
33             # ABSTRACT:
34              
35             __END__