File Coverage

blib/lib/Shared/Examples/Net/Amazon/S3/Fixture/response/bucket_objects_list_v1_with_prefix_and_delimiter.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             # PODNAME: Shared::Examples::Net::Amazon::S3::Fixture::response::bucket_objects_list_v1_with_prefix_and_delimiter
2             # ABSTRACT: Shared::Examples providing response fixture
3              
4 2     2   13 use strict;
  2         4  
  2         58  
5 2     2   10 use warnings;
  2         5  
  2         66  
6              
7 2     2   12 use Shared::Examples::Net::Amazon::S3::Fixture;
  2         4  
  2         14  
8              
9             Shared::Examples::Net::Amazon::S3::Fixture::fixture content => <<'XML';
10             <?xml version="1.0" encoding="UTF-8"?>
11             <ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
12             <Name>some-bucket</Name>
13             <Prefix>photos/2006/</Prefix>
14             <Marker></Marker>
15             <MaxKeys>1000</MaxKeys>
16             <Delimiter>/</Delimiter>
17             <IsTruncated>false</IsTruncated>
18              
19             <CommonPrefixes>
20             <Prefix>photos/2006/February/</Prefix>
21             </CommonPrefixes>
22             <CommonPrefixes>
23             <Prefix>photos/2006/January/</Prefix>
24             </CommonPrefixes>
25             </ListBucketResult>
26             XML
27              
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Shared::Examples::Net::Amazon::S3::Fixture::response::bucket_objects_list_v1_with_prefix_and_delimiter - Shared::Examples providing response fixture
36              
37             =head1 VERSION
38              
39             version 0.991
40              
41             =head1 AUTHOR
42              
43             Branislav ZahradnĂ­k <barney@cpan.org>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav ZahradnĂ­k.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut