mediawiki-extensions-Visual.../tests/ve/ve.Node.test.js
Trevor Parscal ef0e4b4973 Moved summary functions into custom assertions
Also updated tests to use the new assert as an argument style

Change-Id: I3c82b4b068134bba755ae4a5c26f5bb98d400c43
2012-07-20 13:59:21 -07:00

35 lines
703 B
JavaScript

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