mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
ef0e4b4973
Also updated tests to use the new assert as an argument style Change-Id: I3c82b4b068134bba755ae4a5c26f5bb98d400c43
26 lines
552 B
JavaScript
26 lines
552 B
JavaScript
/**
|
|
* VisualEditor Document tests.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
module( 've.Document' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.DocumentStub = function( documentNode ) {
|
|
// Inheritance
|
|
ve.Document.call( this, documentNode );
|
|
};
|
|
|
|
ve.extendClass( ve.DocumentStub, ve.Document );
|
|
|
|
/* Tests */
|
|
|
|
test( 'getDocumentNode', 1, function( assert ) {
|
|
var node = new ve.NodeStub(),
|
|
doc = new ve.DocumentStub( node );
|
|
assert.strictEqual( doc.getDocumentNode( node ), node );
|
|
} );
|