File Coverage

blib/lib/Amazon/MWS/Sellers.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Amazon::MWS::Sellers;
2              
3 8     8   44 use Amazon::MWS::Routines qw(:all);
  8         29  
  8         2143  
4              
5             my $sellers_service = '/Sellers/2011-07-01';
6              
7             define_api_method GetServiceStatus =>
8             raw_body => 0,
9             service => "$sellers_service",
10             module_name => 'Amazon::MWS::Sellers',
11             parameters => {},
12             respond => sub {
13             my $root = shift;
14             return $root->{Status};
15             };
16              
17             define_api_method ListMarketplaceParticipations =>
18             raw_body => 1,
19             service => "$sellers_service",
20             parameters => {} ;
21              
22             define_api_method ListMarketplaceParticipationsByNextToken =>
23             raw_body => 1,
24             service => "$sellers_service",
25             parameters => {
26             NextToken => {
27             type => 'string',
28             required => 1,
29             },
30             };