use strict; use warnings; use Test::More tests => 2; use HTML::FormFu::MultiForm; my $multi = HTML::FormFu::MultiForm->new( { tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' } } ); $multi->load_config_file('t/multiform/multiform.yml'); $multi->process; my $html = <
HTML is( "$multi", $html ); my $form = $multi->current_form; is( "$form", $html );