The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
var t = new Test.Jemplate();

var filters = {
    jemplate: 'jemplate_process',
    context: 'evaluate'
};

t.plan(1);
t.filters(filters);
t.run_is('jemplate', 'output');

/* Test
=== Setting a value into a hash works
--- jemplate
test.html
[% testhash = {} -%]
[% testkey = 'bob' -%]
[% testhash.$testkey = 'bozo' -%]
Value: [% testhash.$testkey %]<br />
--- output
Value: bozo<br />

*/