diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-17 19:47:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-17 19:47:48 +0100 |
commit | 57563efe85db92b8daa7ec928fc466afffe11bd8 (patch) | |
tree | 5a8b15ad4210c4bfa387a9f46ad5444d7f5b6849 /spec | |
parent | f29665ce04ca8006c5c7124d327ba59171a30513 (diff) | |
download | prosody-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.lua | 1 |
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)); |