mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.interpolation: Test #1452
This commit is contained in:
parent
08da054c77
commit
8b19b4435f
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
local template = [[
|
||||
{greet!}, {name?world}!
|
||||
{greet!?Hi}, {name?world}!
|
||||
]];
|
||||
local expect1 = [[
|
||||
Hello, WORLD!
|
||||
|
@ -7,11 +7,15 @@ Hello, WORLD!
|
|||
local expect2 = [[
|
||||
Hello, world!
|
||||
]];
|
||||
local expect3 = [[
|
||||
Hi, YOU!
|
||||
]];
|
||||
|
||||
describe("util.interpolation", function ()
|
||||
it("renders", function ()
|
||||
local render = require "util.interpolation".new("%b{}", string.upper);
|
||||
assert.equal(expect1, render(template, { greet = "Hello", name = "world" }));
|
||||
assert.equal(expect2, render(template, { greet = "Hello" }));
|
||||
assert.equal(expect3, render(template, { name = "you" }));
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue