From 06ec7904c37b897b2e87f4321198926ff22da1d9 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Fri, 17 Feb 2017 16:04:42 +0100 Subject: Basis to load std lib --- tests/lapi.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests/lapi.js') diff --git a/tests/lapi.js b/tests/lapi.js index 8a1db31..2f5f459 100644 --- a/tests/lapi.js +++ b/tests/lapi.js @@ -561,4 +561,18 @@ test('lua_settable, lua_gettable', function (t) { "value", "Correct element(s) on the stack" ); +}); + + +test('print', function (t) { + let luaCode = ` + print("hello world"); + `, L; + + t.plan(1); + + t.doesNotThrow(function () { + L = getState(luaCode); + lapi.lua_call(L, 0, -1); + }, "Program executed without errors"); }); \ No newline at end of file -- cgit v1.2.3-54-g00ecf