use strict; use warnings; use Test::More tests => 3; use HTML::FormFu; my $form = HTML::FormFu->new({ tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' } }); $form->auto_fieldset( { nested_name => 'rg' } ); my $field = $form->element('Radiogroup')->name('foo')->value(2) ->options( [ [ 1 => 'One' ], [ 2 => 'Two' ] ] ); is( "$form", <
EOF $form->process( { "rg.foo" => 1, } ); is( $form->param('rg.foo'), 1 ); is( "$form", <
EOF