diff options
Diffstat (limited to 'tests/load.js')
-rw-r--r-- | tests/load.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/load.js b/tests/load.js index 0f524f3..86c3904 100644 --- a/tests/load.js +++ b/tests/load.js @@ -79,4 +79,39 @@ test('load', function (t) { "Correct element(s) on the stack" ); +}); + + +test('luaL_loadbuffer', function (t) { + let luaCode = ` + local a = "hello world" + return a + `, L; + + t.plan(3); + + t.doesNotThrow(function () { + + let bc = toByteCode(luaCode).dataView; + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lauxlib.luaL_loadbuffer(L, bc, null, "test"); + + }, "Lua program loaded without error"); + + t.doesNotThrow(function () { + + lapi.lua_call(L, 0, -1); + + }, "Lua program ran without error"); + + t.strictEqual( + lapi.lua_tostring(L, -1), + "hello world", + "Correct element(s) on the stack" + ); + });
\ No newline at end of file |