File Coverage

test-data/lib/Local/Sort.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 16 75.0


line stmt bran cond sub pod time code
1             package Local::Sort;
2              
3 1     1   7 use strict;
  1         1  
  1         29  
4 1     1   5 use warnings;
  1         1  
  1         26  
5              
6 1     1   5 use Exporter qw( import );
  1         2  
  1         128  
7              
8             our $AAA = 1;
9             our $AAA_2FA = 1;
10             our @BBB = ();
11             our %CCC = ();
12              
13       0 0   sub bbb { }
14       0 0   sub bba_2fa { }
15              
16             our @EXPORT_OK = (
17             '$AAA',
18             '$AAA_2FA',
19             'bbb',
20             'bba_2fa',
21             '@BBB',
22             '%CCC',
23             );
24              
25             1;