From 5d4b124a2fd10e3c156a5cf440a901cff13bfadf Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Fri, 28 Apr 2017 15:29:41 +0200 Subject: os.getenv --- tests/loslib.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'tests/loslib.js') diff --git a/tests/loslib.js b/tests/loslib.js index 968a338..c460919 100644 --- a/tests/loslib.js +++ b/tests/loslib.js @@ -34,3 +34,34 @@ test('os.time', function (t) { ); }); + + +test('os.getenv', function (t) { + let luaCode = ` + return os.getenv('HOME') + `, L; + + t.plan(3); + + t.doesNotThrow(function () { + + L = lauxlib.luaL_newstate(); + + lauxlib.luaL_openlibs(L); + + lauxlib.luaL_loadstring(L, lua.to_luastring(luaCode)); + + }, "Lua program loaded without error"); + + t.doesNotThrow(function () { + + lua.lua_call(L, 0, -1); + + }, "Lua program ran without error"); + + t.ok( + lua.lua_isstring(L, -1), + "Correct element(s) on the stack" + ); + +}); -- cgit v1.2.3-54-g00ecf