Software /
code /
prosody
File
spec/util_format_spec.lua @ 10793:9ce67da45e54
mod_storage_sql: Log database connection parameters when creating engine
This is meant to help trace down an issue where Prosody apparently
creates multiple conflicting SQL engines, causing problems especially
with SQLite3, e.g. #616 #784.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 02 May 2020 14:13:02 +0200 |
parent | 10035:386f085820e6 |
child | 11638:5f4a657136bc |
line wrap: on
line source
local format = require "util.format".format; describe("util.format", function() describe("#format()", function() it("should work", function() assert.equal("hello", format("%s", "hello")); assert.equal("<nil>", format("%s")); assert.equal("<nil>", format("%d")); assert.equal("<nil>", format("%q")); assert.equal(" [<nil>]", format("", nil)); assert.equal("true", format("%s", true)); assert.equal("[true]", format("%d", true)); assert.equal("% [true]", format("%%", true)); assert.equal("{ }", format("%q", { })); assert.equal("[1.5]", format("%d", 1.5)); assert.equal("[7.3786976294838e+19]", format("%d", 73786976294838206464)); end); end); end);