File Coverage

/tmp/BZGxXhCwvM
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package main;
2 2     2   3472631 no warnings 'once';
  2         22  
  2         350  
3             our @BUILD;
4              
5             package PPP;
6 2     2   816 use Mite::Shim;
  2         6  
  2         19  
7             sub BUILD {
8 1     1   4 my ( $self, @args ) = @_;
9 1         12 push @::BUILD, [ __PACKAGE__, ref($self), @args ];
10             }
11              
12             package CCC;
13 2     2   260 use Mite::Shim;
  2         5  
  2         10  
14             extends 'PPP';
15             sub BUILD {
16 1     1   3 my ( $self, @args ) = @_;
17 1         6 push @::BUILD, [ __PACKAGE__, ref($self), @args ];
18             }
19              
20             1;