mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
spec: Stub tests for util.interpolation
This commit is contained in:
parent
f1f0c276bc
commit
15d5dffa63
1 changed files with 17 additions and 0 deletions
17
spec/util_interpolation_spec.lua
Normal file
17
spec/util_interpolation_spec.lua
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue