File Coverage

blib/lib/WWW/Facebook/API/Friends.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 5 5 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1             #######################################################################
2             # ex: set ts=8 sw=4 et
3             #########################################################################
4             package WWW::Facebook::API::Friends;
5              
6 34     34   202 use warnings;
  34         67  
  34         1058  
7 34     34   178 use strict;
  34         70  
  34         930  
8 34     34   175 use Carp;
  34         1729  
  34         7675  
9              
10 1     1 1 28 sub get { return shift->base->call( 'friends.get', @_ ) }
11 1     1 1 27 sub get_app_users { return shift->base->call( 'friends.getAppUsers', @_ ) }
12 1     1 1 29 sub are_friends { return shift->base->call( 'friends.areFriends', @_ ) }
13 1     1 1 27 sub get_lists { return shift->base->call( 'friends.getLists', @_ ) }
14 1     1 1 28 sub get_mutual_friends { return shift->base->call( 'friends.getMutualFriends', @_ ) }
15              
16             1; # Magic true value required at end of module
17             __END__