File Coverage

blib/lib/Net/OAuth/XauthAccessTokenRequest.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Net::OAuth::XauthAccessTokenRequest;
2 1     1   6 use warnings;
  1         2  
  1         39  
3 1     1   6 use strict;
  1         2  
  1         34  
4 1     1   6 use base 'Net::OAuth::Request';
  1         2  
  1         1263  
5              
6             __PACKAGE__->add_extension_param_pattern(qr/x_auth_/);
7             __PACKAGE__->add_required_message_params(qw/x_auth_username x_auth_password x_auth_mode/);
8 2     2 0 11 sub allow_extra_params {0}
9 2     2 0 11 sub sign_message {1}
10              
11             =head1 NAME
12              
13             Net::OAuth::xAuthAccessTokenRequest - xAuth extension
14              
15             =head1 SEE ALSO
16              
17             L
18              
19             =head1 AUTHOR
20              
21             Keith Grennan, C<< >>
22              
23             =head1 CONTRIBUTORS
24              
25             Masayoshi Sekimura
26              
27             Simon Wistow
28              
29             =head1 COPYRIGHT & LICENSE
30              
31             Copyright 2010 Keith Grennan, all rights reserved.
32              
33             This program is free software; you can redistribute it and/or modify it
34             under the same terms as Perl itself.
35              
36             =cut
37              
38             1;