mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
d4a99f2d26
Change-Id: I9d8993c95782b700d0b8b45b253a3c4c689381a5
28 lines
502 B
JavaScript
28 lines
502 B
JavaScript
module( 've.Node' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.NodeStub = function() {
|
|
// Inheritance
|
|
ve.Node.call( this, 'stub' );
|
|
};
|
|
|
|
ve.extendClass( ve.NodeStub, ve.Node );
|
|
|
|
/* Tests */
|
|
|
|
test( 'getType', 1, function() {
|
|
var node = new ve.NodeStub();
|
|
strictEqual( node.getType(), 'stub' );
|
|
} );
|
|
|
|
test( 'getParent', 1, function() {
|
|
var node = new ve.dm.NodeStub();
|
|
strictEqual( node.getParent(), null );
|
|
} );
|
|
|
|
test( 'getRoot', 1, function() {
|
|
var node = new ve.dm.NodeStub();
|
|
strictEqual( node.getRoot(), node );
|
|
} );
|