File Coverage

blib/lib/Net/Amazon/Request/EAN.pm
Criterion Covered Total %
statement 9 16 56.2
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 21 61.9


line stmt bran cond sub pod time code
1             ######################################################################
2             package Net::Amazon::Request::EAN;
3             ######################################################################
4 1     1   2659 use warnings;
  1         3  
  1         45  
5 1     1   7 use strict;
  1         2  
  1         47  
6 1     1   7 use base qw(Net::Amazon::Request);
  1         3  
  1         1141  
7              
8             ##################################################
9             sub new {
10             ##################################################
11 0     0 1   my($class, %options) = @_;
12              
13 0           $class->_assert_options_defined(\%options, qw(ean));
14              
15 0           $class->_convert_option(\%options,
16             'ean',
17             'ItemId');
18              
19 0           $options{'IdType'} = 'EAN';
20              
21 0           my $self = $class->SUPER::new(%options);
22            
23 0           $self->_convert_itemsearch();
24              
25 0           bless $self, $class; # reconsecrate
26             }
27              
28             1;
29              
30             __END__