File Coverage

blib/lib/WWW/Facebook/API/FBML.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition n/a
subroutine 9 10 90.0
pod 7 7 100.0
total 31 33 93.9


line stmt bran cond sub pod time code
1             #######################################################################
2             # ex: set ts=8 sw=4 et
3             #########################################################################
4             package WWW::Facebook::API::FBML;
5              
6 34     34   196 use warnings;
  34         65  
  34         1070  
7 34     34   175 use strict;
  34         64  
  34         1007  
8 34     34   167 use Carp;
  34         59  
  34         20362  
9              
10 1     1 1 32 sub delete_custom_tags { return shift->base->call( 'fbml.deleteCustomTags', @_ ) }
11 1     1 1 29 sub get_custom_tags { return shift->base->call( 'fbml.getCustomTags', @_ ) }
12 1     1 1 23 sub register_custom_tags { return shift->base->call( 'fbml.registerCustomTags', @_ ) }
13 1     1 1 23 sub refresh_img_src { return shift->base->call( 'fbml.refreshImgSrc', @_ ) }
14 1     1 1 23 sub refresh_ref_url { return shift->base->call( 'fbml.refreshRefUrl', @_ ) }
15 1     1 1 31 sub set_ref_handle { return shift->base->call( 'fbml.setRefHandle', @_ ) }
16              
17             sub upload_native_strings {
18 0     0 1   return shift->base->call( 'fbml.uploadNativeStrings', @_ );
19             }
20              
21             1; # Magic true value required at end of module
22             __END__