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 => 'foo' } ); my $field = $form->element('Select')->name('bar') ->options( [ [ 1 => 'One' ], [ 2 => 'Two' ] ] ); is( "$form", <
EOF $form->process( { "foo.bar" => '2', } ); is( $form->param("foo.bar"), 2 ); is( "$form", <
EOF