File Coverage

blib/lib/WWW/Bebo/API/Groups.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 6 66.6
pod 2 2 100.0
total 18 22 81.8


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::Groups;
8              
9 21     21   120 use warnings;
  21         40  
  21         634  
10 21     21   371 use strict;
  21         48  
  21         834  
11 21     21   108 use Carp;
  21         34  
  21         1318  
12              
13 21     21   110 use version; our $VERSION = qv('0.0.03');
  21         38  
  21         254  
14              
15 0     0 1   sub get { return shift->base->call( 'groups.get', @_ ) }
16 0     0 1   sub get_members { return shift->base->call( 'groups.getMembers', @_ ) }
17              
18             1; # Magic true value required at end of module
19             __END__