File

spec/util_interpolation_spec.lua @ 10223:d185c4961ee0

mod_storage_internal: Include last text message A protocol built on this API now allows showing a list of unread conversations with a counter, ordered by either oldest or newest message, along with the text body itself.
author Kim Alvefur <zash@zash.se>
date Fri, 23 Aug 2019 01:28:53 +0200
parent 9737:3d6f5b20cca6
child 10350:75eab21b7968
line wrap: on
line source

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