The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#######################################################################
# $Date: 2007-06-28 13:05:21 -0700 (Thu, 28 Jun 2007) $
# $Revision: 120 $
# $Author: david.romano $
# ex: set ts=8 sw=4 et
#########################################################################
use strict;
BEGIN {
if ( 3 != grep defined,
@ENV{qw/WFA_API_KEY_TEST WFA_SECRET_KEY_TEST WFA_SESSION_KEY_TEST/} )
{
plan skip_all => 'Live tests require API key, secret, and session';
}
plan tests => 2;
}
my $api = WWW::Facebook::API->new( app_path => 'test' );
my $groups = $api->groups->get;
is ref $groups, 'ARRAY', 'get returns array ref';
SKIP: {
skip 'No groups to get members from' => 1 unless $groups->[0]->{'gid'};
is keys %{$api->groups->get_members(gid => $groups->[0]->{'gid'})}, 4,
'four lists, as per API';
}