mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.format: Change formatting of nil values to avoid looking like XML
This commit is contained in:
parent
bfb4514d0f
commit
6e037dc045
2 changed files with 6 additions and 6 deletions
|
@ -4,10 +4,10 @@ describe("util.format", function()
|
|||
describe("#format()", function()
|
||||
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("(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));
|
||||
assert.equal("% [true]", format("%%", true));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue