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   141789 use strict;
  2         19  
  2         66  
4 2     2   12 use Role::Tiny;
  2         4  
  2         14  
5              
6             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
7             our $DATE = '2021-10-07'; # DATE
8             our $DIST = 'RoleBundle-TinyCommons-Tree'; # DIST
9             our $VERSION = '0.129'; # VERSION
10              
11             requires 'parent';
12             requires 'children';
13              
14             1;
15             # ABSTRACT: Role for a tree node object
16              
17             __END__