From 35e1ec3457c653521e8afa7cd05984309f0ba67a Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Tue, 18 Apr 2017 12:13:43 +0200 Subject: tests locals.lua --- tests/lua.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'tests') diff --git a/tests/lua.js b/tests/lua.js index 30a9c98..28fa9fd 100644 --- a/tests/lua.js +++ b/tests/lua.js @@ -8,6 +8,34 @@ const lua = require('../src/lua.js'); const linit = require('../src/linit.js'); +test('locals.lua', function (t) { + let luaCode = ` + _soft = true + require = function(lib) return _G[lib] end -- NYI + return dofile("tests/lua-tests/locals.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('constructs.lua', function (t) { let luaCode = ` _soft = true -- cgit v1.2.3-54-g00ecf