File Coverage

blib/lib/Net/OpenMicroBlogging/ProtectedResourceRequest.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::ProtectedResourceRequest;
2 1     1   6 use warnings;
  1         2  
  1         27  
3 1     1   5 use strict;
  1         2  
  1         30  
4 1     1   5 use base qw(Net::OAuth::ProtectedResourceRequest Net::OpenMicroBlogging::Message);
  1         2  
  1         869  
5              
6             __PACKAGE__->init_omb_message;
7              
8             =head1 NAME
9              
10             Net::OpenMicroBlogging::ProtectedResourceRequest - An OpenMicroBlogging protocol request for a Protected Resource
11              
12             =head1 SEE ALSO
13              
14             L, L
15              
16             =head1 AUTHOR
17              
18             Keith Grennan, C<< >>
19              
20             =head1 COPYRIGHT & LICENSE
21              
22             Copyright 2007 Keith Grennan, all rights reserved.
23              
24             This program is free software; you can redistribute it and/or modify it
25             under the same terms as Perl itself.
26              
27             =cut
28              
29              
30             1;