File Coverage

blib/lib/YAML/PP/Ref.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition 1 3 33.3
subroutine 5 5 100.0
pod 1 1 100.0
total 22 24 91.6


line stmt bran cond sub pod time code
1             # ABSTRACT: Generated Reference Parser backend for YAML::PP
2             package YAML::PP::Ref;
3 1     1   70360 use strict;
  1         12  
  1         30  
4 1     1   5 use warnings;
  1         2  
  1         43  
5              
6             our $VERSION = '0.01_002'; # TRIAL VERSION
7              
8 1     1   6 use base 'YAML::PP';
  1         2  
  1         639  
9 1     1   71724 use YAML::PP::Ref::Parser;
  1         3  
  1         88  
10              
11             sub new {
12 4     4 1 17083 my ($class, %args) = @_;
13 4   33     55 $args{parser} ||= YAML::PP::Ref::Parser->new;
14 4         304 $class->SUPER::new(%args);
15             }
16              
17             1;
18              
19             __END__