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   1322 use warnings;
  2         4  
  2         127  
3 2     2   9 use strict;
  2         3  
  2         61  
4 2     2   10 use base 'Net::OAuth::Response';
  2         4  
  2         536  
5 2     2   13 use Net::OAuth;
  2         4  
  2         115  
6              
7 8     8 0 21 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<Net::OAuth>, L<http://oauth.net>
16              
17             =head1 AUTHOR
18              
19             Originally by Keith Grennan <kgrennan@cpan.org>
20              
21             Currently maintained by Robert Rothenberg <rrwo@cpan.org>
22              
23             =head1 COPYRIGHT & LICENSE
24              
25             Copyright 2007-2012, 2024-2025 Keith Grennan
26              
27             This program is free software; you can redistribute it and/or modify it
28             under the same terms as Perl itself.
29              
30             =cut
31              
32             1;