diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-02-18 16:07:47 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-20 08:56:33 +0100 |
commit | b62bcdfa67d6b0359bf45930ab392953d69eb399 (patch) | |
tree | ca4cc55bce206e8924f4099e1b19b6eab30234ed /tests/lapi.js | |
parent | 6316cab500cdaa944c6d2ef886138e7e9da0cc7c (diff) | |
download | fengari-b62bcdfa67d6b0359bf45930ab392953d69eb399.tar.gz fengari-b62bcdfa67d6b0359bf45930ab392953d69eb399.tar.bz2 fengari-b62bcdfa67d6b0359bf45930ab392953d69eb399.zip |
setmetatable, getmetatable
Diffstat (limited to 'tests/lapi.js')
-rw-r--r-- | tests/lapi.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lapi.js b/tests/lapi.js index 561b774..30366d5 100644 --- a/tests/lapi.js +++ b/tests/lapi.js @@ -490,27 +490,4 @@ test('lua_settable, lua_gettable', function (t) { "value", "Correct element(s) on the stack" ); -}); - - -test('print', function (t) { - let luaCode = ` - print("hello", "world", 123) - `, L; - - t.plan(1); - - t.doesNotThrow(function () { - - let bc = toByteCode(luaCode).dataView; - - L = lauxlib.luaL_newstate(); - - linit.luaL_openlibs(L); - - lapi.lua_load(L, bc, "test-lua_load") - - lapi.lua_call(L, 0, 1); - - }, "JS Lua program ran without error"); });
\ No newline at end of file |