spec/util_interpolation_spec.lua
author Kim Alvefur <zash@zash.se>
Sat, 10 Mar 2018 19:58:41 +0100
changeset 9741 3d6f5b20cca6
child 10354 75eab21b7968
permissions -rw-r--r--
spec: Stub tests for util.interpolation

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);