File Coverage

blib/lib/WWW/Facebook/API/Links.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 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::Links;
5              
6 34     34   266 use warnings;
  34         71  
  34         980  
7 34     34   173 use strict;
  34         71  
  34         974  
8 34     34   171 use Carp;
  34         65  
  34         4448  
9              
10 1     1 1 23 sub get { return shift->base->call( 'links.get', @_ ) }
11 1     1 1 29 sub post { return shift->base->call( 'links.post', @_ ) }
12              
13             1; # Magic true value required at end of module
14             __END__