summaryrefslogtreecommitdiff
path: root/tests/test-Lua.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-Lua.cc')
-rw-r--r--tests/test-Lua.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test-Lua.cc b/tests/test-Lua.cc
index d4c3637..06f233b 100644
--- a/tests/test-Lua.cc
+++ b/tests/test-Lua.cc
@@ -202,6 +202,13 @@ void MainTask::Do() {
}
TAssert(L.gettop() == 0);
+ L.load("return obj.__type.name == 'ObjectTest', obj.__type.new == ObjectTest.new");
+ TAssert(L.gettop() == 2);
+ TAssert(L.toboolean(1) == true);
+ TAssert(L.toboolean(2) == true);
+ L.pop();
+ L.pop();
+
IO<Input> i = new Input("tests/test-Lua.lua");
i->open();
L.load(i);