File Coverage

blib/lib/Net/OAuth/YahooAccessTokenRefreshRequest.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Net::OAuth::YahooAccessTokenRefreshRequest;
2 1     1   18 use warnings;
  1         2  
  1         45  
3 1     1   3 use strict;
  1         2  
  1         16  
4 1     1   3 use base 'Net::OAuth::AccessTokenRequest';
  1         1  
  1         378  
5              
6             __PACKAGE__->add_required_message_params(qw/session_handle/);
7 4     4 0 8 sub allow_extra_params {0}
8 4     4 0 8 sub sign_message {1}
9              
10             =head1 NAME
11              
12             Net::OAuth::YahooAccessTokenRefreshRequest - Yahoo OAuth Extension
13              
14             =head1 SEE ALSO
15              
16             L<http://developer.yahoo.com/oauth/guide/oauth-auth-flow.html>
17              
18             =head1 AUTHOR
19              
20             Originally by Keith Grennan <kgrennan@cpan.org>
21              
22             Currently maintained by Robert Rothenberg <rrwo@cpan.org>
23              
24             =head1 CONTRIBUTORS
25              
26             Marc Mims
27              
28             =head1 COPYRIGHT & LICENSE
29              
30             Copyright 2007-2012, 2024-2025 Keith Grennan
31              
32             This program is free software; you can redistribute it and/or modify it
33             under the same terms as Perl itself.
34              
35             =cut
36              
37             1;