mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-06 06:29:11 +00:00
82114467f1
199 files touched. Whee! Change-Id: Id82ce4a32f833406db4a1cc585674f2bdb39ba0d
26 lines
588 B
JavaScript
26 lines
588 B
JavaScript
/*!
|
|
* VisualEditor Document tests.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
QUnit.module( 've.Document' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.DocumentStub = function VeDocumentStub( documentNode ) {
|
|
// Parent constructor
|
|
ve.Document.call( this, documentNode );
|
|
};
|
|
|
|
ve.inheritClass( ve.DocumentStub, ve.Document );
|
|
|
|
/* Tests */
|
|
|
|
QUnit.test( 'getDocumentNode', 1, function ( assert ) {
|
|
var node = new ve.NodeStub(),
|
|
doc = new ve.DocumentStub( node );
|
|
assert.strictEqual( doc.getDocumentNode( node ), node );
|
|
} );
|