Software /
code /
prosody
Diff
spec/util_interpolation_spec.lua @ 10352:dc1e6c2fb50a
util.interpolation: Test map syntax
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 Oct 2019 20:58:19 +0200 |
parent | 10351:72b23c5f74fb |
child | 10412:b788b5257945 |
line wrap: on
line diff
--- a/spec/util_interpolation_spec.lua Sun Oct 20 20:56:29 2019 +0200 +++ b/spec/util_interpolation_spec.lua Sun Oct 20 20:58:19 2019 +0200 @@ -17,6 +17,12 @@ 1. HELLO 2. WORLD ]] +local template_map = [[ +{foo%{idx}: {item!} +}]] +local expect_map = [[ +FOO: bar +]] describe("util.interpolation", function () it("renders", function () @@ -25,5 +31,6 @@ assert.equal(expect2, render(template, { greet = "Hello" })); assert.equal(expect3, render(template, { name = "you" })); assert.equal(expect_array, render(template_array, { foo = { "Hello", "World" } })); + assert.equal(expect_map, render(template_map, { foo = { foo = "bar" } })); end); end);