aboutsummaryrefslogtreecommitdiff
path: root/tests/ltm.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ltm.js')
-rw-r--r--tests/ltm.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/ltm.js b/tests/ltm.js
index 64f52aa..ab68e5e 100644
--- a/tests/ltm.js
+++ b/tests/ltm.js
@@ -22,8 +22,6 @@ test('__index, __newindex: with actual table', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -56,8 +54,6 @@ test('__newindex: with non table', function (t) {
t.plan(2);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -91,8 +87,6 @@ test('__index function in metatable', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -135,8 +129,6 @@ test('__newindex function in metatable', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -177,8 +169,6 @@ test('__index table in metatable', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -222,8 +212,6 @@ test('__newindex table in metatable', function (t) {
t.plan(4);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -278,8 +266,6 @@ test('__index table with own metatable', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -333,8 +319,6 @@ test('__newindex table with own metatable', function (t) {
t.plan(4);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -436,8 +420,6 @@ test('binary __xxx functions in metatable', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -490,8 +472,6 @@ test('__eq', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -530,8 +510,6 @@ test('__lt', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -570,8 +548,6 @@ test('__le', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -610,8 +586,6 @@ test('__le that uses __lt', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -654,8 +628,6 @@ test('__unm, __bnot', function (t) {
t.plan(4);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -701,8 +673,6 @@ test('__len', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -742,8 +712,6 @@ test('__concat', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);
@@ -783,8 +751,6 @@ test('__call', function (t) {
t.plan(3);
- t.comment("Running following code: \n" + luaCode);
-
t.doesNotThrow(function () {
let bc = toByteCode(luaCode);