%PDF- %PDF-
Direktori : /www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/tests/ce/ |
Current File : /www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/tests/ce/ve.ce.LeafNode.test.js |
/*! * VisualEditor ContentEditable LeafNode tests. * * @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org */ QUnit.module( 've.ce.LeafNode' ); /* Stubs */ ve.ce.LeafNodeStub = function VeCeLeafNodeStub() { // Parent constructor ve.ce.LeafNodeStub.super.apply( this, arguments ); }; OO.inheritClass( ve.ce.LeafNodeStub, ve.ce.LeafNode ); ve.ce.LeafNodeStub.static.name = 'leaf-stub'; ve.ce.nodeFactory.register( ve.ce.LeafNodeStub ); /* Tests */ QUnit.test( 'splitOnEnter', 1, function ( assert ) { var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() ); assert.strictEqual( node.splitOnEnter(), false ); } ); QUnit.test( 'canHaveChildren', 1, function ( assert ) { var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() ); assert.strictEqual( node.canHaveChildren(), false ); } ); QUnit.test( 'canHaveChildrenNotContent', 1, function ( assert ) { var node = new ve.ce.LeafNodeStub( new ve.dm.LeafNodeStub() ); assert.strictEqual( node.canHaveChildrenNotContent(), false ); } );