mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.format: Also handle the %p format added in Lua 5.4
This commit is contained in:
parent
1eca4e8870
commit
0ddd204a27
2 changed files with 27 additions and 3 deletions
|
@ -25,5 +25,14 @@ describe("util.format", function()
|
|||
assert.equal("\"Hello w\\195rld\"", format("%s", "Hello w\195rld"));
|
||||
end);
|
||||
|
||||
if _VERSION >= "Lua 5.4" then
|
||||
it("handles %p formats", function ()
|
||||
assert.matches("a 0x%x+ b", format("%s %p %s", "a", {}, "b"));
|
||||
end)
|
||||
else
|
||||
it("does something with %p formats", function ()
|
||||
assert.string(format("%p", {}));
|
||||
end)
|
||||
end
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue