File Coverage

blib/lib/Net/Amazon/Request/Blended.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             ######################################################################
2             package Net::Amazon::Request::Blended;
3             ######################################################################
4 1     1   704 use warnings;
  1         2  
  1         32  
5 1     1   7 use strict;
  1         2  
  1         36  
6 1     1   6 use base qw(Net::Amazon::Request);
  1         2  
  1         203  
7              
8             ##################################################
9             sub new {
10             ##################################################
11 1     1 1 34 my($class, %options) = @_;
12              
13 1         10 $class->_assert_options_defined(\%options, 'blended');
14              
15 1         2 $options{'SearchIndex'} = 'Blended';
16 1         8 $class->_convert_option(\%options,
17             'blended',
18             'Keywords');
19              
20 1         9 my $self = $class->SUPER::new(%options);
21              
22 1         13 bless $self, $class; # reconsecrate
23             }
24              
25             1;
26              
27             __END__