mediawiki-extensions-Visual.../modules/ve/test/ve.Node.test.js
Timo Tijhof a15b2f77f2 Fix constructor names; remove redundant hasOwnProperty.
Add some missing constructor names and rename the ones with a
lowercase 'v'.

I previously changed Object.create and others to using hasOwn,
but that turned out to be useless. The thought at the time was
to only use the native one if it really is a native one (and not
a polyfill from another script), however in then hasOwn is only
relevant on prototypes and when negated. For static members it
would be an own-property either way.

Follows-up:
* Id6783fcfc35a896db088ff424ff9faaabcaff716 (metanode)
* Iab763954fb8cf375900d7a9a92dec1c755d5407e (object-management)

Change-Id: Ia6ef597e5e5453277472dfc23f25d2878b68b7f6
2012-10-08 06:15:20 +02:00

35 lines
748 B
JavaScript

/**
* VisualEditor Node tests.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.Node' );
/* Stubs */
ve.NodeStub = function VeNodeStub() {
// Parent constructor
ve.Node.call( this, 'stub' );
};
ve.inheritClass( ve.NodeStub, ve.Node );
/* Tests */
QUnit.test( 'getType', 1, function ( assert ) {
var node = new ve.NodeStub();
assert.strictEqual( node.getType(), 'stub' );
} );
QUnit.test( 'getParent', 1, function ( assert ) {
var node = new ve.NodeStub();
assert.strictEqual( node.getParent(), null );
} );
QUnit.test( 'getRoot', 1, function ( assert ) {
var node = new ve.NodeStub();
assert.strictEqual( node.getRoot(), node );
} );