File Coverage

blib/lib/Net/Amazon/S3/Authorization.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 2 5 40.0
pod 0 4 0.0
total 5 12 41.6


line stmt bran cond sub pod time code
1             package Net::Amazon::S3::Authorization;
2             $Net::Amazon::S3::Authorization::VERSION = '0.99';
3 92     92   59582 use Moose 0.85;
  92         1938  
  92         649  
4              
5             # ABSTRACT: Authorization context base class
6              
7       0 0   sub aws_access_key_id {
8             }
9              
10       0 0   sub aws_secret_access_key {
11             }
12              
13       0 0   sub aws_session_token {
14             }
15              
16       216 0   sub authorization_headers {
17             }
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Net::Amazon::S3::Authorization - Authorization context base class
30              
31             =head1 VERSION
32              
33             version 0.99
34              
35             =head1 DESCRIPTION
36              
37             Authorization context provides an access to authorization information
38              
39             =head1 AUTHOR
40              
41             Branislav Zahradník <barney@cpan.org>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut