Comparison

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
comparison
equal deleted inserted replaced
8619:b96b0141cb61 8620:84b73949fc30
3 describe("util.format", function() 3 describe("util.format", function()
4 describe("#format()", function() 4 describe("#format()", function()
5 it("should work", function() 5 it("should work", function()
6 assert.equal("hello", format("%s", "hello")); 6 assert.equal("hello", format("%s", "hello"));
7 assert.equal("<nil>", format("%s")); 7 assert.equal("<nil>", format("%s"));
8 assert.equal(" [<nil>]", format("", nil));
8 assert.equal("true", format("%s", true)); 9 assert.equal("true", format("%s", true));
9 assert.equal("[true]", format("%d", true)); 10 assert.equal("[true]", format("%d", true));
10 assert.equal("% [true]", format("%%", true)); 11 assert.equal("% [true]", format("%%", true));
11 end); 12 end);
12 end); 13 end);