File Coverage

blib/lib/Net/Amazon/Response/Publisher.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             ######################################################################
2             package Net::Amazon::Response::Publisher;
3             ######################################################################
4 1     1   643 use warnings;
  1         2  
  1         28  
5 1     1   4 use strict;
  1         2  
  1         28  
6 1     1   5 use base qw(Net::Amazon::Response);
  1         2  
  1         579  
7              
8             use Net::Amazon::Property;
9              
10             ##################################################
11             sub new {
12             ##################################################
13             my($class, %options) = @_;
14              
15             my $self = $class->SUPER::new(%options);
16              
17             bless $self, $class; # reconsecrate
18             }
19              
20             ##################################################
21             sub as_string {
22             ##################################################
23             my($self) = @_;
24              
25             return $self->SUPER::list_as_string($self->properties);
26             }
27              
28             1;