File Coverage

blib/lib/YAML/PP/Type/MergeKey.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 12 12 100.0


line stmt bran cond sub pod time code
1 3     3   158534 use strict;
  3         4  
  3         124  
2 3     3   11 use warnings;
  3         5  
  3         350  
3             package YAML::PP::Type::MergeKey;
4              
5             our $VERSION = 'v0.40.0'; # VERSION
6              
7             sub new {
8 1     1 1 1 my ($class) = @_;
9 1         5 return bless {}, $class;
10             }
11              
12             1;
13              
14              
15             __END__