mediawiki-extensions-Visual.../tests/ve2/ve.Node.test.js
Trevor Parscal d4a99f2d26 Removed "prototype." prefix from test names
Change-Id: I9d8993c95782b700d0b8b45b253a3c4c689381a5
2012-04-27 11:03:08 -07:00

28 lines
502 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.dm.NodeStub();
strictEqual( node.getParent(), null );
} );
test( 'getRoot', 1, function() {
var node = new ve.dm.NodeStub();
strictEqual( node.getRoot(), node );
} );