File Coverage

blib/lib/Net/OpenMicroBlogging/UpdateProfileRequest.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::UpdateProfileRequest;
2 1     1   3700 use warnings;
  1         2  
  1         36  
3 1     1   5 use strict;
  1         2  
  1         43  
4 1     1   6 use base qw(Net::OpenMicroBlogging::Message Net::OpenMicroBlogging::ProtectedResourceRequest);
  1         3  
  1         708  
5              
6             __PACKAGE__->init_omb_message;
7              
8             __PACKAGE__->add_required_message_params(qw/
9             omb_version
10             omb_listenee
11             /);
12              
13             __PACKAGE__->add_optional_message_params(qw/
14             omb_listenee_profile
15             omb_listenee_fullname
16             omb_listenee_nickname
17             omb_listenee_homepage
18             omb_listenee_license
19             omb_listenee_bio
20             omb_listenee_location
21             omb_listenee_avatar
22             /);
23              
24             =head1 NAME
25              
26             Net::OpenMicroBlogging::UpdateProfileRequest - An OpenMicroBlogging protocol request for a profile update
27              
28             =head1 SEE ALSO
29              
30             L, L
31              
32             =head1 AUTHOR
33              
34             Keith Grennan, C<< >>
35              
36             =head1 COPYRIGHT & LICENSE
37              
38             Copyright 2007 Keith Grennan, all rights reserved.
39              
40             This program is free software; you can redistribute it and/or modify it
41             under the same terms as Perl itself.
42              
43             =cut
44              
45              
46             1;