use strict; use warnings; use Test::More tests => 3; use HTML::FormFu; use DateTime; my $form = HTML::FormFu->new({ tt_args => { INCLUDE_PATH => 'share/templates/tt/xhtml' } }); $form->load_config_file('t/elements/date_default_datetime_args.yml'); $form->process; { my $parser = DateTime::Format::Natural->new( time_zone => 'Europe/Berlin', ); my $dt = $parser->parse_datetime( 'now' ); my $foo = $form->get_field('foo'); my $year = $dt->year; my $year_xhtml = qq{}; cmp_ok( $foo, '=~', $year_xhtml ); my $hour = sprintf "%02d", $dt->hour; my $hour_xhtml = qq{}; cmp_ok( $foo, '=~', $hour_xhtml ); } { my $bar = $form->get_field('bar'); my $year_xhtml = qq{}; cmp_ok( $bar, '=~', $year_xhtml ); }