mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 08:34:54 +00:00
6b34f09df2
And added a license to some files that didn't have it yet Change-Id: I3a7e60374d1198d369a0475b8f65f7415012a337
41 lines
976 B
JavaScript
41 lines
976 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() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canBeSplit(), false );
|
|
} );
|
|
|
|
test( 'canHaveChildren', 1, function() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canHaveChildren(), false );
|
|
} );
|
|
|
|
test( 'canHaveGrandchildren', 1, function() {
|
|
var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() );
|
|
equal( node.canHaveGrandchildren(), false );
|
|
} );
|