aboutsummaryrefslogtreecommitdiff
path: root/tests/loadlib.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/loadlib.js')
-rw-r--r--tests/loadlib.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/loadlib.js b/tests/loadlib.js
index b840bf5..ee87b4a 100644
--- a/tests/loadlib.js
+++ b/tests/loadlib.js
@@ -98,3 +98,35 @@ test('package.loadlib', function (t) {
);
});
+
+
+test('package.searchpath', function (t) {
+ let luaCode = `
+ return package.searchpath('module-hello', './?.lua;./tests/?.lua')
+ `, 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.strictEqual(
+ lua.lua_tojsstring(L, -1),
+ "./tests/module-hello.lua",
+ "Correct element(s) on the stack"
+ );
+
+});