jquery-ui/tests/unit/droppable/events.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

define( [
2016-04-03 16:32:14 +00:00
"qunit",
"jquery",
"ui/widgets/droppable"
2016-04-03 16:32:14 +00:00
], function( QUnit, $ ) {
2016-04-03 16:32:14 +00:00
QUnit.module( "droppable: events" );
2016-04-03 16:32:14 +00:00
QUnit.test( "droppable destruction/recreation on drop event", function( assert ) {
assert.expect( 1 );
var config = {
activeClass: "active",
drop: function() {
var element = $( this ),
newDroppable = $( "<div>" )
2015-08-24 12:59:32 +00:00
.css( { width: 100, height: 100 } )
.text( "Droppable" );
element.after( newDroppable );
element.remove();
newDroppable.droppable( config );
}
},
draggable = $( "#draggable1" ).draggable(),
droppable1 = $( "#droppable1" ).droppable( config ),
droppable2 = $( "#droppable2" ).droppable( config ),
droppableOffset = droppable1.offset(),
draggableOffset = draggable.offset(),
dx = droppableOffset.left - draggableOffset.left,
dy = droppableOffset.top - draggableOffset.top;
draggable.simulate( "drag", {
dx: dx,
dy: dy
2015-08-24 12:59:32 +00:00
} );
assert.lacksClasses( droppable2, "active", "subsequent droppable no longer active" );
2015-08-24 12:59:32 +00:00
} );
2016-04-03 16:32:14 +00:00
// Todo: comment the following in when ready to actually test
/*
2016-04-03 16:32:14 +00:00
Test("activate", function() {
ok(false, 'missing test - untested code is broken code');
});
test("deactivate", function() {
ok(false, 'missing test - untested code is broken code');
});
test("over", function() {
ok(false, 'missing test - untested code is broken code');
});
test("out", function() {
ok(false, 'missing test - untested code is broken code');
});
test("drop", function() {
ok(false, 'missing test - untested code is broken code');
});
*/
} );