File Coverage

blib/lib/Role/TinyCommons/Tree/Node.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Role::TinyCommons::Tree::Node;
2              
3 2     2   137632 use strict;
  2         16  
  2         66  
4 2     2   11 use Role::Tiny;
  2         5  
  2         12  
5              
6             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
7             our $DATE = '2021-10-07'; # DATE
8             our $DIST = 'Role-TinyCommons-Tree'; # DIST
9             our $VERSION = '0.128'; # VERSION
10              
11             requires 'parent';
12             requires 'children';
13              
14             1;
15             # ABSTRACT: Role for a tree node object
16              
17             __END__