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 );
|
2012-05-04 22:29:47 +00:00
|
|
|
|
2012-04-19 21:43:31 +00:00
|
|
|
/* Tests */
|
|
|
|
|
2012-04-27 18:03:08 +00:00
|
|
|
test( 'getType', 1, function() {
|
2012-04-19 21:43:31 +00:00
|
|
|
var node = new ve.NodeStub();
|
|
|
|
strictEqual( node.getType(), 'stub' );
|
|
|
|
} );
|
2012-04-19 23:47:40 +00:00
|
|
|
|
2012-04-27 18:03:08 +00:00
|
|
|
test( 'getParent', 1, function() {
|
2012-05-04 22:29:47 +00:00
|
|
|
var node = new ve.NodeStub();
|
2012-04-19 23:47:40 +00:00
|
|
|
strictEqual( node.getParent(), null );
|
|
|
|
} );
|
|
|
|
|
2012-04-27 18:03:08 +00:00
|
|
|
test( 'getRoot', 1, function() {
|
2012-05-04 22:29:47 +00:00
|
|
|
var node = new ve.NodeStub();
|
2012-04-19 23:47:40 +00:00
|
|
|
strictEqual( node.getRoot(), node );
|
|
|
|
} );
|