Diff

spec/util_format_spec.lua @ 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
parent 8619:b96b0141cb61
child 9656:3da6cc927ee6
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));