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

# https://rt.cpan.org/Ticket/Display.html?id=54967

use Test::More tests => 1;

use HTML::FormFu;

my $form = HTML::FormFu->new;

$form->load_config_file('t-aggregate/bugs/empty_block_with_nested_name.yml');

$form->process( { foo => 'aaa', } );

is_deeply( [ $form->valid ], ['foo'] );