File Coverage

blib/lib/Shared/Examples/Net/Amazon/S3/Fixture/response/bucket_objects_list_v1_with_filter.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_filter
2             # ABSTRACT: Shared::Examples providing response fixture
3              
4 1     1   7 use strict;
  1         3  
  1         35  
5 1     1   5 use warnings;
  1         3  
  1         29  
6              
7 1     1   7 use Shared::Examples::Net::Amazon::S3::Fixture;
  1         2  
  1         10  
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>N</Prefix>
14             <Marker>Ned</Marker>
15             <MaxKeys>40</MaxKeys>
16             <IsTruncated>false</IsTruncated>
17             <Contents>
18             <Key>Nelson</Key>
19             <LastModified>2006-01-01T12:00:00.000Z</LastModified>
20             <ETag>&quot;828ef3fdfa96f00ad9f27c383fc9ac7f&quot;</ETag>
21             <Size>5</Size>
22             <StorageClass>STANDARD</StorageClass>
23             <Owner>
24             <ID>bcaf161ca5fb16fd081034f</ID>
25             <DisplayName>webfile</DisplayName>
26             </Owner>
27             </Contents>
28             <Contents>
29             <Key>Neo</Key>
30             <LastModified>2006-01-01T12:00:00.000Z</LastModified>
31             <ETag>&quot;828ef3fdfa96f00ad9f27c383fc9ac7f&quot;</ETag>
32             <Size>4</Size>
33             <StorageClass>STANDARD</StorageClass>
34             <Owner>
35             <ID>bcaf1ffd86a5fb16fd081034f</ID>
36             <DisplayName>webfile</DisplayName>
37             </Owner>
38             </Contents>
39             </ListBucketResult>
40             XML
41              
42             __END__
43              
44             =pod
45              
46             =encoding UTF-8
47              
48             =head1 NAME
49              
50             Shared::Examples::Net::Amazon::S3::Fixture::response::bucket_objects_list_v1_with_filter - Shared::Examples providing response fixture
51              
52             =head1 VERSION
53              
54             version 0.98
55              
56             =head1 AUTHOR
57              
58             Branislav Zahradník <barney@cpan.org>
59              
60             =head1 COPYRIGHT AND LICENSE
61              
62             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
63              
64             This is free software; you can redistribute it and/or modify it under
65             the same terms as the Perl 5 programming language system itself.
66              
67             =cut