mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 18:15:19 +00:00
efafed3231
Change-Id: I8df9226a358a76b661eab6e967ff0d63d361f691
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 );
|
|
};
|
|
|
|
OO.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 );
|
|
} );
|