diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-12 01:29:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-12 01:29:34 +0200 |
commit | c0b8a6ef63746675fbe1441bceed47f6fb2bee88 (patch) | |
tree | 771c72f485c59b84ac9169be1acdee8e4cd360d3 /spec | |
parent | a8b096516b2ef1791bc348e18baa7e7f5399de8f (diff) | |
download | prosody-c0b8a6ef63746675fbe1441bceed47f6fb2bee88.tar.gz prosody-c0b8a6ef63746675fbe1441bceed47f6fb2bee88.zip |
util.format: Serialize values for the %q format
Improves eg debug logs
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_format_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_format_spec.lua b/spec/util_format_spec.lua index 8a2e9312..b9652d19 100644 --- a/spec/util_format_spec.lua +++ b/spec/util_format_spec.lua @@ -11,6 +11,7 @@ describe("util.format", function() assert.equal("true", format("%s", true)); assert.equal("[true]", format("%d", true)); assert.equal("% [true]", format("%%", true)); + assert.equal("{ }", format("%q", { })); end); end); end); |