util.format: Also handle the %p format added in Lua 5.4

This commit is contained in:
Kim Alvefur 2021-12-11 13:39:58 +01:00
parent 1eca4e8870
commit 0ddd204a27
2 changed files with 27 additions and 3 deletions

View file

@ -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);