mediawiki-extensions-Visual.../tests/ve/ce/ve.ce.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
1,021 B
JavaScript

/**
* VisualEditor content editable LeafNode tests.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
module( 've.ce.LeafNode' );
/* Stubs */
ve.ce.LeafNodeStub = function( model ) {
// Inheritance
ve.ce.LeafNode.call( this, 'leaf-stub', model );
};
ve.ce.LeafNodeStub.rules = {
'canBeSplit': false
};
ve.extendClass( ve.ce.LeafNodeStub, ve.ce.LeafNode );
ve.ce.nodeFactory.register( 'leaf-stub', ve.ce.LeafNodeStub );
/* Tests */
test( 'canBeSplit', 1, function( assert ) {
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
assert.equal( node.canBeSplit(), false );
} );
test( 'canHaveChildren', 1, function( assert ) {
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
assert.equal( node.canHaveChildren(), false );
} );
test( 'canHaveGrandchildren', 1, function( assert ) {
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
assert.equal( node.canHaveGrandchildren(), false );
} );