File Coverage

blib/lib/Net/Amazon/Request/Seller.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             ######################################################################
2             package Net::Amazon::Request::Seller;
3             ######################################################################
4 1     1   663 use base qw(Net::Amazon::Request);
  1         3  
  1         168  
5              
6             ##################################################
7             sub new {
8             ##################################################
9 1     1 1 73 my($class, %options) = @_;
10              
11 1         9 $class->_assert_options_defined(\%options,
12             'seller');
13              
14 1         9 $class->_convert_option(\%options,
15             'seller',
16             'SellerId');
17              
18             # $options{IdType} = "Listing";
19              
20 1         9 my $self = $class->SUPER::new(%options);
21              
22 1         16 bless $self, $class; # reconsecrate
23             }
24              
25             1;
26              
27             __END__