aboutsummaryrefslogtreecommitdiffstats
path: root/spec/util_interpolation_spec.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-10 19:58:41 +0100
committerKim Alvefur <zash@zash.se>2018-03-10 19:58:41 +0100
commit15d5dffa63b71c75bcba23046ac20e4a7f0e3a58 (patch)
treef6349b8746ca796715905d6b75b553e4456eea23 /spec/util_interpolation_spec.lua
parentf1f0c276bc41aa4290f06a7b308671d88ee54050 (diff)
downloadprosody-15d5dffa63b71c75bcba23046ac20e4a7f0e3a58.tar.gz
prosody-15d5dffa63b71c75bcba23046ac20e4a7f0e3a58.zip
spec: Stub tests for util.interpolation
Diffstat (limited to 'spec/util_interpolation_spec.lua')
-rw-r--r--spec/util_interpolation_spec.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/util_interpolation_spec.lua b/spec/util_interpolation_spec.lua
new file mode 100644
index 00000000..88d9f844
--- /dev/null
+++ b/spec/util_interpolation_spec.lua
@@ -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);