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 => 1;

use HTML::FormFu;

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

$form->tt_args( { INCLUDE_PATH => ['root'], } );

$form->add_tt_args( { TEMPLATE_ALLOY => 1, } );

is_deeply(
    $form->tt_args,
    {   INCLUDE_PATH   => ['root'],
        TEMPLATE_ALLOY => 1,
    } );