mediawiki-extensions-Visual.../tests/ve/ve.Node.test.js
Catrope 748b34cc49 ve2 -> ve in the tests directory too
Change-Id: I30b56b1c43202d8cb6af397d2813b19b1a71d30e
2012-06-19 18:36:34 -07:00

28 lines
497 B
JavaScript

module( 've.Node' );
/* Stubs */
ve.NodeStub = function() {
// Inheritance
ve.Node.call( this, 'stub' );
};
ve.extendClass( ve.NodeStub, ve.Node );
/* Tests */
test( 'getType', 1, function() {
var node = new ve.NodeStub();
strictEqual( node.getType(), 'stub' );
} );
test( 'getParent', 1, function() {
var node = new ve.NodeStub();
strictEqual( node.getParent(), null );
} );
test( 'getRoot', 1, function() {
var node = new ve.NodeStub();
strictEqual( node.getRoot(), node );
} );