Diff

spec/util_format_spec.lua @ 9656:3da6cc927ee6

util.format: Tweak how nil values are handled Because [<nil>] seems exsessive
author Kim Alvefur <zash@zash.se>
date Wed, 28 Nov 2018 20:36:53 +0100
parent 8620:84b73949fc30
child 9693:6ed0d6224d64
line wrap: on
line diff
--- a/spec/util_format_spec.lua	Tue Nov 27 21:23:31 2018 +0100
+++ b/spec/util_format_spec.lua	Wed Nov 28 20:36:53 2018 +0100
@@ -5,6 +5,8 @@
 		it("should work", function()
 			assert.equal("hello", format("%s", "hello"));
 			assert.equal("<nil>", format("%s"));
+			assert.equal("<nil>", format("%d"));
+			assert.equal("<nil>", format("%q"));
 			assert.equal(" [<nil>]", format("", nil));
 			assert.equal("true", format("%s", true));
 			assert.equal("[true]", format("%d", true));