jquery-ui/tests/unit/droppable/helper.js
Alexander Schmitz 0cab9f0a2f Droppable: Style updates
Ref #14246
2015-09-11 08:29:08 -04:00

21 lines
358 B
JavaScript

define( [
"jquery",
"lib/helper"
], function( $, helper ) {
return $.extend( helper, {
shouldDrop: function() {
// todo: actually implement this
ok( true, "missing test - untested code is broken code" );
},
shouldNotDrop: function() {
// todo: actually implement this
ok( true, "missing test - untested code is broken code" );
}
} );
} );