From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 use strict;use warnings;use Test::More tests => 1;use HTML::FormFu;my $form = HTML::FormFu->new;$form->auto_fieldset(1);my $field = $form->element('Text')->name('foo');ok( !$field->nested );
use
strict;
warnings;
Test::More
tests
=> 1;
HTML::FormFu;
my
$form
= HTML::FormFu->new;
->auto_fieldset(1);
$field
=
->element(
'Text'
)->name(
'foo'
);
ok( !
->nested );