summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/expressions.t9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/expressions.t b/t/expressions.t
index 163c89b..8e93ccc 100644
--- a/t/expressions.t
+++ b/t/expressions.t
@@ -137,6 +137,15 @@ render_ok(
);
render_ok(
+ '{{#thing}}{{{.}}} {{this}}{{/thing}}',
+ {
+ thing => [ "<foo>" ],
+ },
+ "<foo> &lt;foo&gt;",
+ "{{{.}}}"
+);
+
+render_ok(
'{{foo-bar}}',
{
'foo-bar' => "FOOBAR",