diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lexparse.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/lexparse.js b/tests/lexparse.js index 2470e5d..7ef5fe3 100644 --- a/tests/lexparse.js +++ b/tests/lexparse.js @@ -433,4 +433,38 @@ test('TESTSET (or)', function (t) { "hello", "Program output is correct" ); +}); + + +test('TEST (false)', function (t) { + let luaCode = ` + local a = false + local b = "hello" + + if a then + return b + end + + return "goodbye" + `, L; + + t.plan(2); + + t.doesNotThrow(function () { + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lapi.lua_load(L, null, luaCode, "test", "text"); + + lapi.lua_call(L, 0, -1); + + }, "JS Lua program ran without error"); + + t.strictEqual( + lapi.lua_tostring(L, -1), + "goodbye", + "Program output is correct" + ); });
\ No newline at end of file |