File Coverage

blib/lib/TableData/AOH.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::AOH;
2              
3 3     3   448800 use 5.010001;
  3         11  
4 3     3   18 use strict;
  3         4  
  3         97  
5 3     3   14 use warnings;
  3         6  
  3         255  
6              
7 3     3   1370 use Role::Tiny::With;
  3         21100  
  3         484  
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::AOH';
15              
16             our %SPEC;
17              
18             $SPEC{new} = {
19             v => 1.1,
20             is_meth => 1,
21             is_func => 0,
22             args => {
23             aoh => {
24             schema => 'aoh*',
25             req => 1,
26             },
27             },
28             };
29              
30             1;
31             # ABSTRACT: Get table data from array of hashes
32              
33             __END__