File Coverage

blib/lib/Net/OAuth/AccessTokenResponse.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Net::OAuth::AccessTokenResponse;
2 1     1   1267 use warnings;
  1         2  
  1         57  
3 1     1   4 use strict;
  1         1  
  1         37  
4 1     1   3 use base 'Net::OAuth::Response';
  1         1  
  1         147  
5              
6             __PACKAGE__->add_required_message_params(qw/token_secret/);
7 2     2 0 8 sub allow_extra_params {1}
8              
9             =head1 NAME
10              
11             Net::OAuth::AccessTokenResponse - An OAuth protocol response for an Access Token
12              
13             =head1 SEE ALSO
14              
15             L<Net::OAuth>, L<http://oauth.net>
16              
17             =head1 AUTHOR
18              
19             Originally by Keith Grennan <kgrennan@cpan.org>
20              
21             Currently maintained by Robert Rothenberg <rrwo@cpan.org>
22              
23             =head1 LICENSE AND COPYRIGHT
24              
25             Copyright 2007-2012, 2024-2025 Keith Grennan
26              
27             This program is free software; you can redistribute it and/or modify it
28             under the same terms as Perl itself.
29              
30             =cut
31              
32             1;