Changeset

8620:84b73949fc30

util.format: Add test coverage for case of extra nil argument
author Kim Alvefur <zash@zash.se>
date Sat, 17 Mar 2018 19:47:48 +0100
parents 8619:b96b0141cb61
children 8621:e3e9479d526e
files spec/util_format_spec.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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));