File Coverage

blib/lib/WWW/Facebook/API/Photos.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 6 6 100.0
total 30 30 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::Photos;
5              
6 34     34   283 use warnings;
  34         76  
  34         1005  
7 34     34   184 use strict;
  34         206  
  34         1016  
8 34     34   201 use Carp;
  34         73  
  34         8772  
9              
10 1     1 1 25 sub add_tag { return shift->base->call( 'photos.addTag', @_ ) }
11 1     1 1 27 sub create_album { return shift->base->call( 'photos.createAlbum', @_ ) }
12 1     1 1 28 sub get { return shift->base->call( 'photos.get', @_ ) }
13 1     1 1 28 sub get_albums { return shift->base->call( 'photos.getAlbums', @_ ) }
14 1     1 1 31 sub get_tags { return shift->base->call( 'photos.getTags', @_ ) }
15 1     1 1 32 sub upload { return shift->base->call( 'photos.upload', @_ ) }
16              
17             1; # Magic true value required at end of module
18             __END__