File Coverage

blib/lib/Role/TinyCommons/Tree/Node.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


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