File Coverage

blib/lib/Net/OAuth/ConsumerRequest.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::ConsumerRequest;
2 1     1   4464 use warnings;
  1         3  
  1         32  
3 1     1   6 use strict;
  1         1  
  1         33  
4 1     1   5 use base 'Net::OAuth::Request';
  1         2  
  1         538  
5              
6 4     4 0 19 sub allow_extra_params {1}
7 5     5 0 16 sub sign_message {1}
8              
9             =head1 NAME
10              
11             Net::OAuth::ConsumerRequest - An OAuth Consumer Request
12              
13             =head1 NOTE
14              
15             Consumer Requests are a proposed extension to OAuth, so other
16             OAuth implementations may or may not support them.
17              
18             =head1 SEE ALSO
19              
20             Consumer Request Extension Draft:
21              
22             L
23              
24             L, L
25              
26             =head1 AUTHOR
27              
28             Keith Grennan, C<< >>
29              
30             =head1 COPYRIGHT & LICENSE
31              
32             Copyright 2007 Keith Grennan, all rights reserved.
33              
34             This program is free software; you can redistribute it and/or modify it
35             under the same terms as Perl itself.
36              
37             =cut
38              
39              
40             1;