File Coverage

blib/lib/Net/OpenMicroBlogging/RequestTokenRequest.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::OpenMicroBlogging::RequestTokenRequest;
2 1     1   3404 use warnings;
  1         3  
  1         39  
3 1     1   6 use strict;
  1         2  
  1         45  
4 1     1   6 use base qw(Net::OpenMicroBlogging::Message Net::OAuth::RequestTokenRequest);
  1         2  
  1         594  
5              
6             __PACKAGE__->init_omb_message;
7             __PACKAGE__->add_required_message_params(qw/omb_version omb_listener/);
8              
9             =head1 NAME
10              
11             Net::OpenMicroBlogging::RequestTokenRequest - An OpenMicroBlogging protocol request for a Request 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;