File Coverage

blib/lib/HashData/Hash.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package HashData::Hash;
2              
3             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
4             our $DATE = '2021-05-21'; # DATE
5             our $DIST = 'HashDataRoles-Standard'; # DIST
6             our $VERSION = '0.001'; # VERSION
7              
8 1     1   471 use strict;
  1         3  
  1         34  
9 1     1   6 use warnings;
  1         1  
  1         35  
10              
11 1     1   474 use Role::Tiny::With;
  1         5457  
  1         95  
12             with 'HashDataRole::Source::Hash';
13              
14             1;
15             # ABSTRACT: Get hash data from Perl hash
16              
17             __END__