File Coverage

blib/lib/Net/OAuth/RequestTokenRequest.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::RequestTokenRequest;
2 4     4   3942 use warnings;
  4         10  
  4         348  
3 4     4   70 use strict;
  4         35  
  4         171  
4 4     4   22 use base 'Net::OAuth::Request';
  4         7  
  4         1437  
5              
6 27     27 0 66 sub sign_message {1}
7              
8             =head1 NAME
9              
10             Net::OAuth::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;