aboutsummaryrefslogtreecommitdiff
path: root/tests/lvm.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lvm.js')
-rw-r--r--tests/lvm.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/lvm.js b/tests/lvm.js
index 5f19455..4c10521 100644
--- a/tests/lvm.js
+++ b/tests/lvm.js
@@ -450,4 +450,37 @@ test('TEST (false)', function (t) {
"goodbye",
"Program output is correct"
);
+});
+
+
+test('SETTABLE, GETTABLE', function (t) {
+ let luaCode = `
+ local t = {}
+
+ t[1] = "hello"
+ t["two"] = "world"
+
+ return t[1], t["two"]
+ `, vm;
+
+ t.plan(2);
+
+ t.comment("Running following code: \n" + luaCode);
+
+ t.doesNotThrow(function () {
+ vm = getVM(luaCode);
+ vm.execute();
+ }, "Program executed without errors");
+
+ t.stritEqual(
+ vm.L.stack[vm.L.top - 1].value.array[1],
+ "hello",
+ "Program output is correct"
+ );
+
+ t.stritEqual(
+ vm.L.stack[vm.L.top - 1].value.hash.get("two"),
+ "world",
+ "Program output is correct"
+ );
}); \ No newline at end of file