File Coverage

blib/lib/QualysGuard/Response/TicketListDeleted.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package QualysGuard::Response::TicketListDeleted;
2              
3 1     1   2283 use warnings;
  1         5  
  1         82  
4 1     1   7 use strict;
  1         3  
  1         49  
5              
6 1     1   7 use base qw( QualysGuard::Response );
  1         3  
  1         169  
7              
8             our $VERSION = '0.01';
9              
10              
11             # =============================================================
12             # - new
13             # =============================================================
14             sub new {
15             my ( $class, $xml ) = @_;
16              
17             my $self = __PACKAGE__->SUPER::new( $xml );
18              
19             bless $self, $class;
20              
21             # -- check for QualysGuard function error
22              
23             if ( $self->exists('/TICKET_LIST_DELETED_OUTPUT/ERROR') ) {
24             $self->{error_code} = $self->findvalue('/TICKET_LIST_DELETED_OUTPUT/ERROR/@number');
25             $self->{error_text} = $self->getNodeText('/TICKET_LIST_DELETED_OUTPUT/ERROR');
26             $self->{error_text} =~ s/^\s+(.*)\s+$/$1/m;
27             }
28              
29             return $self;
30             }
31              
32              
33             1;
34              
35             __END__