NAME

CGI::Test::Form::Widget::Box::Check - A checkbox widget

SYNOPSIS

# Inherits from CGI::Test::Form::Widget::Box
# $form is a CGI::Test::Form

use Log::Agent;    # logdie below

my ($agree, $ads) = $form->checkbox_by_name(qw(i_agree ads));

logdie "expected a standalone checkbox" unless $agree->is_standalone;
$agree->check;
$ads->uncheck_tagged("spam OK");

DESCRIPTION

This class represents a checkbox widget, which may be checked or unchecked at will by users.

The interface is the same as the one described in CGI::Test::Form::Widget::Box.

AUTHOR

Raphael Manfredi <Raphael_Manfredi@pobox.com>

SEE ALSO

CGI::Test::Form::Widget::Box(3), CGI::Test::Form::Widget::Box::Radio(3).