util.format: Add test coverage for case of extra nil argument
authorKim Alvefur <zash@zash.se>
Sat, 17 Mar 2018 19:47:48 +0100
changeset 8623 84b73949fc30
parent 8622 b96b0141cb61
child 8624 e3e9479d526e
util.format: Add test coverage for case of extra nil argument
spec/util_format_spec.lua
--- a/spec/util_format_spec.lua	Sat Mar 17 19:43:20 2018 +0100
+++ b/spec/util_format_spec.lua	Sat Mar 17 19:47:48 2018 +0100
@@ -5,6 +5,7 @@
 		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));