The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Test::More tests => 2;

use HTML::FormFu;

my $form = HTML::FormFu->new(
    { tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' } } );

$form->load_config_file('t-aggregate/elements/repeatable_counter_name.yml');

my $fs    = $form->get_element;
my $block = $fs->get_element;

# we don't call repeat() ourselves
# this should happen in $form->process()

$form->process( {
        foo_1 => 'a',
        bar_1 => 'b',
        foo_2 => 'c',
        bar_2 => 'd',
        count => 2,
    } );

is_deeply(
    $form->params,
    {   foo_1 => 'a',
        bar_1 => 'b',
        foo_2 => 'c',
        bar_2 => 'd',
    } );

is( $form, <<HTML );
<form action="" method="post">
<fieldset>
<div>
<div>
<input name="foo_1" type="text" value="a" />
</div>
<div>
<input name="bar_1" type="text" value="b" />
</div>
</div>
<div>
<div>
<input name="foo_2" type="text" value="c" />
</div>
<div>
<input name="bar_2" type="text" value="d" />
</div>
</div>
<div>
<input name="submit" type="submit" />
</div>
</fieldset>
</form>
HTML