mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Test rejection of multiple references to same table
This commit is contained in:
parent
bdadc69e1a
commit
2801e1f100
1 changed files with 8 additions and 0 deletions
|
@ -27,6 +27,14 @@ describe("util.serialization", function ()
|
|||
end);
|
||||
end);
|
||||
|
||||
it("rejects multiple references to same table", function ()
|
||||
assert.has_error(function ()
|
||||
local t1 = {};
|
||||
local t2 = { t1, t1 };
|
||||
serialization.serialize(t2);
|
||||
end);
|
||||
end);
|
||||
|
||||
it("roundtrips", function ()
|
||||
local function test(data)
|
||||
local serialized = serialization.serialize(data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue