aboutsummaryrefslogtreecommitdiff
path: root/tests/embind/embind.test.js
diff options
context:
space:
mode:
authorChad Austin <caustin@gmail.com>2014-05-02 03:05:47 -0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-05-21 22:54:12 +0700
commitbf85f382d15d5547197869e773288e2bc820fd86 (patch)
tree160128ad30a489bfedc7182726c495851aec050d /tests/embind/embind.test.js
parent5e45a9ea3ea43d0cd58f35bc83156247f936c138 (diff)
sketch extend method
Diffstat (limited to 'tests/embind/embind.test.js')
-rw-r--r--tests/embind/embind.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/embind/embind.test.js b/tests/embind/embind.test.js
index 1cadb7f1..523cb1bc 100644
--- a/tests/embind/embind.test.js
+++ b/tests/embind/embind.test.js
@@ -1640,10 +1640,10 @@ module({
});
});
- /* ENABLE THESE AS THEY PASS
BaseFixture.extend("new-style class inheritance", function() {
var Empty = cm.AbstractClass.extend({});
-
+ // ENABLE THESE AS THEY PASS
+/*
test("can extend, construct, and delete", function() {
var instance = new Empty;
instance.delete();
@@ -1713,8 +1713,8 @@ module({
assert.instanceof(instance, cm.AbstractClass);
instance.delete();
});
+*/
});
- */
BaseFixture.extend("registration order", function() {
test("registration of tuple elements out of order leaves them in order", function() {