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 5     5   34 use strict;
  5         8  
  5         124  
4 5     5   66 use warnings;
  5         11  
  5         244  
5              
6             sub new {
7 1     1 0 5 return bless \@_, shift;
8             }
9              
10             1;