prosody/spec/util_format_spec.lua
2017-11-10 05:46:39 +01:00

13 lines
397 B
Lua

local format = require "util.format".format;
describe("util.format", function()
describe("#format()", function()
it("should work", function()
assert.equal(format("%s", "hello"), "hello");
assert.equal(format("%s"), "<nil>");
assert.equal(format("%s", true), "true");
assert.equal(format("%d", true), "[true]");
assert.equal(format("%%", true), "% [true]");
end);
end);
end);