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   1513 use warnings;
  1         2  
  1         49  
3 1     1   4 use strict;
  1         1  
  1         18  
4 1     1   4 use base 'Net::OAuth::Request';
  1         3  
  1         380  
5              
6 4     4 0 13 sub allow_extra_params {1}
7 5     5 0 14 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<http://oauth.googlecode.com/svn/spec/ext/consumer_request/1.0/drafts/1/spec.html>
23              
24             L<Net::OAuth>, L<http://oauth.net>
25              
26             =head1 AUTHOR
27              
28             Originally by Keith Grennan <kgrennan@cpan.org>
29              
30             Currently maintained by Robert Rothenberg <rrwo@cpan.org>
31              
32             =head1 COPYRIGHT & LICENSE
33              
34             Copyright 2007-2012, 2024-2025 Keith Grennan
35              
36             This program is free software; you can redistribute it and/or modify it
37             under the same terms as Perl itself.
38              
39             =cut
40              
41              
42             1;