mediawiki-extensions-Visual.../modules/ve/test/dm/ve.dm.LeafNode.test.js
Trevor Parscal 76bac7d152 Move test files
Change-Id: Id0a0bd5b4a91f702cad34e9f5e7f2121763abffd
2012-07-25 14:35:49 -07:00

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 );
} );