File Coverage

blib/lib/WWW/Facebook/API/FQL.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::FQL;
5              
6 34     34   197 use warnings;
  34         82  
  34         963  
7 34     34   187 use strict;
  34         74  
  34         956  
8 34     34   169 use Carp;
  34         70  
  34         4501  
9              
10             # always return an array reference. The value returned by Facebook is a hash
11             # reference when there are no results, so this shouldn't be a problem.
12 0     0 1   sub query { return shift->base->call( 'fql.query', @_ ); }
13 0     0 1   sub multiquery { return shift->base->call( 'fql.multiquery', @_ ); }
14              
15             1; # Magic true value required at end of module
16             __END__