File Coverage

blib/lib/Net/OAuth/V1_0A/RequestTokenRequest.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             package Net::OAuth::V1_0A::RequestTokenRequest;
2 1     1   8 use warnings;
  1         18  
  1         90  
3 1     1   8 use strict;
  1         2  
  1         37  
4 1     1   6 use base 'Net::OAuth::RequestTokenRequest';
  1         2  
  1         222  
5              
6             __PACKAGE__->add_required_message_params(qw/callback/);
7              
8             =head1 NAME
9              
10             Net::OAuth::V1_0A::RequestTokenRequest - An OAuth protocol request for a Request Token
11              
12             =head1 SEE ALSO
13              
14             L<Net::OAuth>, L<http://oauth.net>
15              
16             =head1 AUTHOR
17              
18             Originally by Keith Grennan <kgrennan@cpan.org>
19              
20             Currently maintained by Robert Rothenberg <rrwo@cpan.org>
21              
22             =head1 COPYRIGHT & LICENSE
23              
24             Copyright 2007-2012, 2024-2025 Keith Grennan
25              
26             This program is free software; you can redistribute it and/or modify it
27             under the same terms as Perl itself.
28              
29             =cut
30              
31             1;