From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use Test::More tests => 1;
my $form = HTML::FormFu->new;
$form->auto_fieldset(1);
my $field = $form->element('Text')->name('foo');
ok( !$field->nested );