File Coverage

blib/lib/CBOR/PP/Tagged.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package CBOR::PP::Tagged;
2              
3 6     6   55 use strict;
  6         13  
  6         173  
4 6     6   29 use warnings;
  6         11  
  6         333  
5              
6             sub new {
7 1     1 0 6 return bless \@_, shift;
8             }
9              
10             1;