The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use strict; use warnings FATAL => 'all'; 
use Test::More;

use DTL::Fast qw(get_template);
use DTL::Fast::Context;
use Data::Dumper;

my( $template, $test_string, $context);

$context = new DTL::Fast::Context({
    'array1' => [ 'string', 1, undef, 1 ],
    'array2' => [ 1, undef, 'blabla' ],
});

my $SET = [
    {
        'template' => '{{ array1|last }}',
        'test' => '1',
        'title' => 'Numeric value',
    },
    {
        'template' => '{{ array2|last }}',
        'test' => 'blabla',
        'title' => 'String value',
    },
];

foreach my $data (@$SET)
{
    is( DTL::Fast::Template->new($data->{'template'})->render($context), $data->{'test'}, $data->{'title'});
    
}

done_testing();