Software /
code /
prosody
File
spec/util_interpolation_spec.lua @ 9793:9993fd021d19
mod_http: Solve CORS problems once and for all
This blindly allows any cross-site requests.
Future work should add an API to allow each HTTP app some influence over
this for each HTTP path
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 04 Oct 2018 12:22:12 +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);