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 1     1   7 use strict;
  1         2  
  1         27  
2 1     1   5 use warnings;
  1         1  
  1         85  
3             package YAML::PP::Type::MergeKey;
4              
5             our $VERSION = '0.036'; # VERSION
6              
7             sub new {
8 1     1 1 2 my ($class) = @_;
9 1         5 return bless {}, $class;
10             }
11              
12             1;
13              
14              
15             __END__