use strict;
use Test::More tests => 1;
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,
} );