aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-17 19:47:48 +0100
committerKim Alvefur <zash@zash.se>2018-03-17 19:47:48 +0100
commit57563efe85db92b8daa7ec928fc466afffe11bd8 (patch)
tree5a8b15ad4210c4bfa387a9f46ad5444d7f5b6849 /spec
parentf29665ce04ca8006c5c7124d327ba59171a30513 (diff)
downloadprosody-57563efe85db92b8daa7ec928fc466afffe11bd8.tar.gz
prosody-57563efe85db92b8daa7ec928fc466afffe11bd8.zip
util.format: Add test coverage for case of extra nil argument
Diffstat (limited to 'spec')
-rw-r--r--spec/util_format_spec.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_format_spec.lua b/spec/util_format_spec.lua
index b091a86d..7e6a0c6e 100644
--- a/spec/util_format_spec.lua
+++ b/spec/util_format_spec.lua
@@ -5,6 +5,7 @@ describe("util.format", function()
it("should work", function()
assert.equal("hello", format("%s", "hello"));
assert.equal("<nil>", format("%s"));
+ assert.equal(" [<nil>]", format("", nil));
assert.equal("true", format("%s", true));
assert.equal("[true]", format("%d", true));
assert.equal("% [true]", format("%%", true));