diff options
| -rw-r--r-- | tests/lua.js | 28 | 
1 files changed, 28 insertions, 0 deletions
| 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 | 
