File Coverage

blib/lib/CBOR/Free/X/Recursion.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package CBOR::Free::X::Recursion;
2              
3 1     1   737 use strict;
  1         2  
  1         34  
4 1     1   5 use warnings;
  1         2  
  1         47  
5              
6 1     1   7 use parent qw( CBOR::Free::X::Base );
  1         2  
  1         7  
7              
8             sub _new {
9 2     2   252 my ($class, $max_recursion) = @_;
10              
11 2         10 return $class->SUPER::_new("Refuse to encode() more than $max_recursion times at once!");
12             }
13              
14             1;