File Coverage

blib/lib/Net/OAuth/V1_0A/RequestTokenResponse.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::RequestTokenResponse;
2 1     1   6 use warnings;
  1         2  
  1         36  
3 1     1   5 use strict;
  1         2  
  1         38  
4 1     1   6 use base 'Net::OAuth::RequestTokenResponse';
  1         2  
  1         125  
5              
6             __PACKAGE__->add_required_message_params(qw/callback_confirmed/);
7              
8             =head1 NAME
9              
10             Net::OAuth::V1_0A::RequestTokenResponse - An OAuth protocol response for an 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;