123456789101112131415161718 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, } );
use
strict;
warnings;
Test::More
tests
=> 1;
HTML::FormFu;
my
$form
= HTML::FormFu->new;
->tt_args( {
INCLUDE_PATH
=> [
'root'
], } );
->add_tt_args( {
TEMPLATE_ALLOY
=> 1, } );
is_deeply(
->tt_args,
{
],
=> 1,
} );