Remove test for functionality tested in core

Add comment to remaining test explaning its purpose.

Depends on Id7c291b in core.

Change-Id: Ia545edac3b2adbd6d45ed5427a9e5e6f9df0da54
This commit is contained in:
Ed Sanders 2014-09-18 13:15:24 -07:00
parent ad7529b283
commit 69ae829737

View file

@ -12,41 +12,8 @@ QUnit.module( 've.ce.Surface' );
QUnit.test( 'handleDelete', function ( assert ) {
var i,
cases = [
{
html:
'<p>Foo</p>' +
ve.dm.mwExample.MWTransclusion.blockOpen + ve.dm.mwExample.MWTransclusion.blockContent +
'<p>Bar</p>',
range: new ve.Range( 4 ),
operations: ['delete'],
expectedData: function () {},
expectedRange: new ve.Range( 5, 7 ),
msg: 'Block transclusion is focused not deleted'
},
{
html:
'<p>Foo</p>' +
ve.dm.mwExample.MWTransclusion.blockOpen + ve.dm.mwExample.MWTransclusion.blockContent +
'<p>Bar</p>',
range: new ve.Range( 4 ),
operations: ['delete', 'delete'],
expectedData: function ( data ) {
data.splice( 5, 2 );
},
expectedRange: new ve.Range( 6 ),
msg: 'Block transclusion is deleted with two keypresses'
},
{
html:
'<p>Foo</p>' +
ve.dm.mwExample.MWBlockImage.html +
'<p>Bar</p>',
range: new ve.Range( 4 ),
operations: ['delete'],
expectedData: function () { },
expectedRange: new ve.Range( 5, 14 ),
msg: 'Block image is focused not deleted'
},
// This asserts that getRelativeRange (via getRelativeOffset) doesn't try to
// enter a handleOwnChildren node
{
html:
ve.dm.mwExample.MWBlockImage.html +