mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.interpolation: Test map syntax
This commit is contained in:
parent
c0a7278366
commit
9889cb8bb4
1 changed files with 7 additions and 0 deletions
|
@ -17,6 +17,12 @@ local expect_array = [[
|
|||
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 @@ describe("util.interpolation", function ()
|
|||
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue