blob: 290ef9c91a63c9afefddd79a5ab7aae4bed64e99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*jshint esversion: 6 */
"use strict";
const test = require('tape');
const beautify = require('js-beautify').js_beautify;
const VM = require("../src/lvm.js");
const getState = require("./tests.js").getState;
test('__index', function (t) {
let luaCode = `
local t = {yo=1}
return t.yo, t.lo
`, L;
t.plan(3);
t.comment("Running following code: \n" + luaCode);
t.doesNotThrow(function () {
L = getState(luaCode);
VM.luaV_execute(L);
}, "Program executed without errors");
t.strictEqual(
L.stack[L.top - 1].value,
null,
"Program output is correct"
);
t.strictEqual(
L.stack[L.top - 2].value,
1,
"Program output is correct"
);
});
|