File Coverage

blib/lib/WWW/Facebook/API/Data.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             #######################################################################
2             # ex: set ts=8 sw=4 et
3             #########################################################################
4             package WWW::Facebook::API::Data;
5              
6 34     34   451 use warnings;
  34         68  
  34         1269  
7 34     34   184 use strict;
  34         85  
  34         1865  
8 34     34   184 use Carp;
  34         86  
  34         5078  
9              
10 0     0 1   sub get_cookies { return shift->base->call( 'data.getCookies', @_ ); }
11 0     0 1   sub set_cookie { return shift->base->call( 'data.setCookie', @_ ); }
12              
13             1; # Magic true value required at end of module
14             __END__