File Coverage

blib/lib/Net/EPP/Frame/Command/Poll/Req.pm
Criterion Covered Total %
statement 6 10 60.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 14 64.2


line stmt bran cond sub pod time code
1             package Net::EPP::Frame::Command::Poll::Req;
2 1     1   7 use base qw(Net::EPP::Frame::Command::Poll);
  1         5  
  1         91  
3 1     1   6 use strict;
  1         2  
  1         79  
4              
5             =pod
6              
7             =head1 NAME
8              
9             Net::EPP::Frame::Command::Poll::Req - an instance of L
10             for the EPP CPollE> request command.
11              
12             =head1 OBJECT HIERARCHY
13              
14             L
15             +----L
16             +----L
17             +----L
18             +----L
19              
20             =cut
21              
22             sub new {
23 0     0 1   my $package = shift;
24 0           my $self = bless($package->SUPER::new('poll'), $package);
25 0           $self->getCommandNode->setAttribute('op' => 'req');
26 0           return $self;
27             }
28              
29             =head1 METHODS
30              
31             This module does not define any methods in addition to those it inherits from
32             its ancestors.
33              
34             =cut
35              
36             1;