File Coverage

blib/lib/WWW/Bebo/API/Friends.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 3 3 100.0
total 25 25 100.0


line stmt bran cond sub pod time code
1             #######################################################################
2             # $Date$
3             # $Revision$
4             # $Author$
5             # ex: set ts=8 sw=4 et
6             #########################################################################
7             package WWW::Bebo::API::Friends;
8              
9 21     21   103 use warnings;
  21         39  
  21         719  
10 21     21   102 use strict;
  21         32  
  21         528  
11 21     21   185 use Carp;
  21         29  
  21         1229  
12              
13 21     21   147 use version; our $VERSION = qv('0.0.03');
  21         43  
  21         125  
14              
15 1     1 1 33 sub get { return shift->base->call( 'friends.get', @_ ) }
16 1     1 1 26 sub get_app_users { return shift->base->call( 'friends.getAppUsers', @_ ) }
17 1     1 1 26 sub are_friends { return shift->base->call( 'friends.areFriends', @_ ) }
18              
19             1; # Magic true value required at end of module
20             __END__