File Coverage

blib/lib/Net/EPP/Parser.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 17 70.5


line stmt bran cond sub pod time code
1             package Net::EPP::Parser;
2 1     1   9 use base qw(XML::LibXML);
  1         3  
  1         924  
3 1     1   43245 use strict;
  1         5  
  1         37  
4 1     1   6 use warnings;
  1         2  
  1         154  
5              
6             =pod
7              
8             =head1 NAME
9              
10             Net::EPP::Parser - a wrapper around the LibXML parser.
11              
12             =head1 DESCRIPTION
13              
14             Nothing to see here, move along.
15              
16             =cut
17              
18             sub new {
19 0     0 0   my $package = shift;
20 0           my $self = bless($package->SUPER::new(@_), $package);
21 0           return $self;
22             }
23              
24             1;
25              
26             =pod
27              
28             =head1 COPYRIGHT
29              
30             This module is (c) 2008 - 2023 CentralNic Ltd and 2024 Gavin Brown. This module
31             is free software; you can redistribute it and/or modify it under the same terms
32             as Perl itself.
33              
34             =cut