
CGI::Test::Form::Group - Records groups of box-type widgets

# $form is a CGI::Test::Form object
use CGI::Test;
my $rgroup = $form->radio_groups;
ok 1, defined $rgroup;
my @title = $rgroup->widgets_in("title");
my ($mister) = grep { $_->value eq "Mr" } @title;
ok 2, $mister->is_checked;

This class is a container for box-type widgets, i.e. radio buttons and checkboxes, which may be groupped by name.
It can be queried to easily retrieve widgets belonging to a group, or to get all the group names.
It is also used internally by CGI::Test to keep track of associated radio buttons, so that checking one automatically unchecks the others in the same group.

The following features are available:
is_groupname nameChecks whether name is the name of a group.
namesReturns a list of group names, in random order.
widget_count groupnameReturns amount of widgets held in groupname, 0 if none.
widgets_in groupnameReturns a list of all the widgets in the given groupname. If the name is not a valid group name, the list will be empty.

Raphael Manfredi <Raphael_Manfredi@pobox.com>
