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   143618 use strict;
  3         5  
  3         97  
2 3     3   13 use warnings;
  3         3  
  3         379  
3             package YAML::PP::Type::MergeKey;
4              
5             our $VERSION = 'v0.39.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__
16              
17             =pod
18              
19             =encoding utf-8
20              
21             =head1 NAME
22              
23             YAML::PP::Type::MergeKey - A special node type for merge keys
24              
25             =head1 DESCRIPTION
26              
27             See L<YAML::PP::Schema::Merge>
28              
29             =head1 METHODS
30              
31             =over
32              
33             =item new
34              
35             Constructor
36              
37             =back
38              
39             =cut
40