diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lua.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/lua.js b/tests/lua.js index 43e82bc..7a0fb9b 100644 --- a/tests/lua.js +++ b/tests/lua.js @@ -7,6 +7,33 @@ const lauxlib = require("../src/lauxlib.js"); const lua = require('../src/lua.js'); const linit = require('../src/linit.js'); + +test('constructs.lua', function (t) { + let luaCode = ` + return dofile("tests/lua-tests/constructs.lua") + `, L; + + t.plan(1); + + t.doesNotThrow(function () { + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lauxlib.luaL_loadstring(L, lua.to_luastring(luaCode)); + + }, "Lua program loaded without error"); + + // t.doesNotThrow(function () { + + lapi.lua_call(L, 0, -1); + + // }, "Lua program ran without error"); + +}); + + test('strings.lua', function (t) { let luaCode = ` return dofile("tests/lua-tests/strings.lua") |