Mercurial > prosody-hg
view spec/util_interpolation_spec.lua @ 9935:3dfd5f22e3c6
core.s2smanager: Spread out session tables over multiple lines
Improves readability
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 29 Mar 2019 22:37:12 +0100 |
| parents | 3d6f5b20cca6 |
| children | 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);
