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   9 use warnings;
  1         3  
  1         39  
3 1     1   6 use strict;
  1         2  
  1         41  
4 1     1   5 use base 'Net::OAuth::RequestTokenRequest';
  1         2  
  1         137  
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, L
15              
16             =head1 AUTHOR
17              
18             Keith Grennan, C<< >>
19              
20             =head1 COPYRIGHT & LICENSE
21              
22             Copyright 2007 Keith Grennan, all rights reserved.
23              
24             This program is free software; you can redistribute it and/or modify it
25             under the same terms as Perl itself.
26              
27             =cut
28              
29             1;