spec: Stub tests for util.interpolation

This commit is contained in:
Kim Alvefur 2018-03-10 19:58:41 +01:00
parent f1f0c276bc
commit 15d5dffa63

View file

@ -0,0 +1,17 @@
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);