File Coverage

blib/lib/Net/OAuth/UserAuthResponse.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Net::OAuth::UserAuthResponse;
2 2     2   2362 use warnings;
  2         4  
  2         64  
3 2     2   11 use strict;
  2         5  
  2         64  
4 2     2   10 use base 'Net::OAuth::Response';
  2         4  
  2         896  
5 2     2   10 use Net::OAuth;
  2         5  
  2         91  
6              
7 8     8 0 35 sub allow_extra_params {1}
8              
9             =head1 NAME
10              
11             Net::OAuth::UserAuthResponse - An OAuth protocol response for an Access Token
12              
13             =head1 SEE ALSO
14              
15             L, L
16              
17             =head1 AUTHOR
18              
19             Keith Grennan, C<< >>
20              
21             =head1 COPYRIGHT & LICENSE
22              
23             Copyright 2007 Keith Grennan, all rights reserved.
24              
25             This program is free software; you can redistribute it and/or modify it
26             under the same terms as Perl itself.
27              
28             =cut
29              
30             1;