mediawiki-extensions-Visual.../modules/ve/test/dm/ve.dm.LeafNode.test.js
Catrope 74ed8e8766 Rename ve_foo_bar back to VeFooBar per discussion
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
2012-09-06 16:15:55 -07:00

40 lines
945 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
*/
QUnit.module( 've.dm.LeafNode' );
/* Stubs */
ve.dm.LeafNodeStub = function VeDmLeafNodeStub() {
// Parent constructor
ve.dm.LeafNode.call( this, 'leaf-stub' );
};
ve.inheritClass( ve.dm.LeafNodeStub, ve.dm.LeafNode );
ve.dm.LeafNodeStub.rules = {
'isWrapped': true,
'isContent': true,
'canContainContent': false,
'childNodeTypes': []
};
ve.dm.LeafNodeStub.converters = null;
ve.dm.nodeFactory.register( 'leaf-stub', ve.dm.LeafNodeStub );
/* Tests */
QUnit.test( 'canHaveChildren', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveChildren(), false );
} );
QUnit.test( 'canHaveGrandchildren', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveGrandchildren(), false );
} );