mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
17 lines
423 B
Lua
17 lines
423 B
Lua
local template = [[
|
|
{greet!}, {name?world}!
|
|
]];
|
|
local expect1 = [[
|
|
Hello, WORLD!
|
|
]];
|
|
local expect2 = [[
|
|
Hello, world!
|
|
]];
|
|
|
|
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" }));
|
|
end);
|
|
end);
|