diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ltablib.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/ltablib.js b/tests/ltablib.js index 8221fe0..1a04e4c 100644 --- a/tests/ltablib.js +++ b/tests/ltablib.js @@ -116,4 +116,38 @@ test('table.unpack', function (t) { 4, "Correct element(s) on the stack" ); +}); + + +test('table.insert', function (t) { + let luaCode = ` + local t = {1, 3, 4} + table.insert(t, 5) + table.insert(t, 2, 2) + return t + `, L; + + t.plan(2); + + t.doesNotThrow(function () { + + let bc = toByteCode(luaCode).dataView; + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lapi.lua_load(L, bc, "test-table.insert"); + + lapi.lua_call(L, 0, -1); + + }, "JS Lua program ran without error"); + + t.deepEqual( + [...lapi.lua_topointer(L, -1).entries()] + .filter(e => typeof e[0] === 'number') // Filter out the 'n' field + .map(e => e[1].value).sort(), + [1, 2, 3, 4, 5], + "Correct element(s) on the stack" + ); });
\ No newline at end of file |