mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
423 B
17 lines
423 B
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);
|
|
|