mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
6b34f09df2
And added a license to some files that didn't have it yet Change-Id: I3a7e60374d1198d369a0475b8f65f7415012a337
41 lines
871 B
JavaScript
41 lines
871 B
JavaScript
/**
|
|
* VisualEditor data model LeafNode tests.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
module( 've.dm.LeafNode' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.dm.LeafNodeStub = function() {
|
|
// Inheritance
|
|
ve.dm.LeafNode.call( this, 'leaf-stub' );
|
|
};
|
|
|
|
ve.dm.LeafNodeStub.rules = {
|
|
'isWrapped': true,
|
|
'isContent': true,
|
|
'canContainContent': false,
|
|
'childNodeTypes': []
|
|
};
|
|
|
|
ve.dm.LeafNodeStub.converters = null;
|
|
|
|
ve.extendClass( ve.dm.LeafNodeStub, ve.dm.LeafNode );
|
|
|
|
ve.dm.nodeFactory.register( 'leaf-stub', ve.dm.LeafNodeStub );
|
|
|
|
/* Tests */
|
|
|
|
test( 'canHaveChildren', 1, function() {
|
|
var node = new ve.dm.LeafNodeStub();
|
|
equal( node.canHaveChildren(), false );
|
|
} );
|
|
|
|
test( 'canHaveGrandchildren', 1, function() {
|
|
var node = new ve.dm.LeafNodeStub();
|
|
equal( node.canHaveGrandchildren(), false );
|
|
} );
|