File Coverage

blib/lib/Net/OAuth/AccessTokenResponse.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::AccessTokenResponse;
2 1     1   1579 use warnings;
  1         2  
  1         27  
3 1     1   4 use strict;
  1         1  
  1         27  
4 1     1   4 use base 'Net::OAuth::Response';
  1         1  
  1         100  
5              
6             __PACKAGE__->add_required_message_params(qw/token_secret/);
7 2     2 0 8 sub allow_extra_params {1}
8              
9             =head1 NAME
10              
11             Net::OAuth::AccessTokenResponse - 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;