aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann008@gmail.com>2017-05-03 15:58:45 +0200
committerBenoit Giannangeli <giann008@gmail.com>2017-05-03 15:58:45 +0200
commit6258925c955a31ac0c520ffabdbaf138910e48c1 (patch)
tree3f046469a15fced89a887ee94a3183b9bba0c474 /tests
parentee05d5644a8ae872c9b8c8b437651b3f34d88591 (diff)
downloadfengari-6258925c955a31ac0c520ffabdbaf138910e48c1.tar.gz
fengari-6258925c955a31ac0c520ffabdbaf138910e48c1.tar.bz2
fengari-6258925c955a31ac0c520ffabdbaf138910e48c1.zip
package.searchpath
Diffstat (limited to 'tests')
-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"
+ );
+
+});