File Coverage

blib/lib/YAML/LibYAML/API/YPP.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 21 21 100.0


line stmt bran cond sub pod time code
1             package YAML::LibYAML::API::YPP;
2 1     1   78575 use strict;
  1         12  
  1         27  
3 1     1   6 use warnings;
  1         4  
  1         26  
4              
5 1     1   5 use base qw/ YAML::PP Exporter /;
  1         2  
  1         583  
6             our @EXPORT_OK = qw/ Load Dump LoadFile DumpFile /;
7              
8 1     1   69893 use YAML::LibYAML::API::YPP::Parser;
  1         2  
  1         82  
9              
10             sub new {
11 1     1 1 146 my ($class, %args) = @_;
12              
13 1         11 my $self = $class->SUPER::new(
14             parser => YAML::LibYAML::API::YPP::Parser->new,
15             %args,
16             );
17 1         3553 return $self;
18             }
19              
20             1;