2012-04-19 21:17:59 +00:00
|
|
|
module( 've.Node' );
|
2012-04-19 21:43:31 +00:00
|
|
|
|
|
|
|
/* Stubs */
|
|
|
|
|
|
|
|
ve.NodeStub = function() {
|
|
|
|
// Inheritance
|
|
|
|
ve.Node.call( this, 'stub' );
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.extendClass( ve.NodeStub, ve.Node );
|
|
|
|
|
|
|
|
/* Tests */
|
|
|
|
|
|
|
|
test( 'prototype.canHaveChildren', 1, function() {
|
2012-04-20 01:05:48 +00:00
|
|
|
raises(
|
|
|
|
function() {
|
|
|
|
var node = new ve.NodeStub();
|
|
|
|
// Abstract method, must be overridden, throws exception when called
|
|
|
|
node.canHaveChildren();
|
|
|
|
},
|
|
|
|
/^ve.Node.canHaveChildren not implemented in this subclass: /,
|
|
|
|
'throws exception when called'
|
|
|
|
);
|
2012-04-19 21:43:31 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
test( 'prototype.canHaveGrandchildren', 1, function() {
|
2012-04-20 01:05:48 +00:00
|
|
|
raises(
|
|
|
|
function() {
|
|
|
|
var node = new ve.NodeStub();
|
|
|
|
// Abstract method, must be overridden, throws exception when called
|
|
|
|
node.canHaveGrandchildren();
|
|
|
|
},
|
|
|
|
/^ve.Node.canHaveGrandchildren not implemented in this subclass: /,
|
|
|
|
'throws exception when called'
|
|
|
|
);
|
2012-04-19 21:43:31 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
test( 'prototype.getType', 1, function() {
|
|
|
|
var node = new ve.NodeStub();
|
|
|
|
strictEqual( node.getType(), 'stub' );
|
|
|
|
} );
|
2012-04-19 23:47:40 +00:00
|
|
|
|
|
|
|
test( 'prototype.getParent', 1, function() {
|
|
|
|
var node = new ve.dm.NodeStub();
|
|
|
|
strictEqual( node.getParent(), null );
|
|
|
|
} );
|
|
|
|
|
|
|
|
test( 'prototype.getRoot', 1, function() {
|
|
|
|
var node = new ve.dm.NodeStub();
|
|
|
|
strictEqual( node.getRoot(), node );
|
|
|
|
} );
|