mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-11 05:56:11 +00:00
ef0e4b4973
Also updated tests to use the new assert as an argument style Change-Id: I3c82b4b068134bba755ae4a5c26f5bb98d400c43
41 lines
901 B
JavaScript
41 lines
901 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( assert ) {
|
|
var node = new ve.dm.LeafNodeStub();
|
|
assert.equal( node.canHaveChildren(), false );
|
|
} );
|
|
|
|
test( 'canHaveGrandchildren', 1, function( assert ) {
|
|
var node = new ve.dm.LeafNodeStub();
|
|
assert.equal( node.canHaveGrandchildren(), false );
|
|
} );
|