mediawiki-extensions-Visual.../modules/ve/test/ve.LeafNode.test.js

20 lines
343 B
JavaScript
Raw Normal View History

/**
* VisualEditor LeafNode tests.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
module( 've.LeafNode' );
/* Stubs */
ve.LeafNodeStub = function() {
// Inheritance
ve.LeafNode.call( this );
};
ve.extendClass( ve.LeafNodeStub, ve.LeafNode );
/* Tests */