Software /
code /
prosody
Diff
spec/util_format_spec.lua @ 9693:6ed0d6224d64
util.format: Serialize values for the %q format
Improves eg debug logs
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 12 Oct 2018 01:29:34 +0200 |
parent | 9656:3da6cc927ee6 |
child | 10034:4fca92d60040 |
line wrap: on
line diff
--- a/spec/util_format_spec.lua Sat Dec 08 17:10:51 2018 +0100 +++ b/spec/util_format_spec.lua Fri Oct 12 01:29:34 2018 +0200 @@ -11,6 +11,7 @@ assert.equal("true", format("%s", true)); assert.equal("[true]", format("%d", true)); assert.equal("% [true]", format("%%", true)); + assert.equal("{ }", format("%q", { })); end); end); end);