File Coverage

blib/lib/WWW/Bebo/API/Notifications.pm
Criterion Covered Total %
statement 13 15 86.6
branch n/a
condition n/a
subroutine 5 7 71.4
pod 3 3 100.0
total 21 25 84.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::Notifications;
8              
9 21     21   111 use warnings;
  21         41  
  21         586  
10 21     21   109 use strict;
  21         36  
  21         569  
11 21     21   98 use Carp;
  21         34  
  21         1174  
12              
13 21     21   113 use version; our $VERSION = qv('0.0.03');
  21         34  
  21         110  
14              
15 1     1 1 21 sub get { return shift->base->call( 'notifications.get', @_ ) }
16 0     0 1   sub send { return shift->base->call( 'notifications.send', @_ ) } ## no critic
17 0     0 1   sub send_email { return shift->base->call( 'notifications.sendEmail', @_ ); }
18              
19             1; # Magic true value required at end of module
20             __END__