File Coverage

blib/lib/TableData/AOA.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package TableData::AOA;
2              
3 3     3   516065 use 5.010001;
  3         13  
4 3     3   16 use strict;
  3         7  
  3         93  
5 3     3   20 use warnings;
  3         9  
  3         216  
6              
7 3     3   1422 use Role::Tiny::With;
  3         22611  
  3         502  
8              
9             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
10             our $DATE = '2024-05-14'; # DATE
11             our $DIST = 'TableDataRoles-Standard'; # DIST
12             our $VERSION = '0.025'; # VERSION
13              
14             with 'TableDataRole::Source::AOA';
15              
16             our %SPEC;
17              
18             $SPEC{new} = {
19             v => 1.1,
20             is_meth => 1,
21             is_func => 0,
22             args => {
23             aoa => {
24             schema => 'aoa*',
25             req => 1,
26             },
27             column_names => {
28             schema => 'aos*',
29             req => 1,
30             },
31             },
32             };
33              
34             1;
35             # ABSTRACT: Get table data from array of arrays
36              
37             __END__