mediawiki-extensions-Visual.../modules/ve/test/ve.LeafNode.test.js
Trevor Parscal 255ce870e2 Puttin' em white-spacers where they aught'a be
function() -> function ()
){ -> ) {

Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
2012-08-06 18:52:19 -07:00

20 lines
344 B
JavaScript

/**
* 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 */