mediawiki-extensions-Visual.../tests/ve/dm/ve.dm.LeafNode.test.js
Trevor Parscal ef0e4b4973 Moved summary functions into custom assertions
Also updated tests to use the new assert as an argument style

Change-Id: I3c82b4b068134bba755ae4a5c26f5bb98d400c43
2012-07-20 13:59:21 -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 );
} );