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

19 lines
352 B
JavaScript
Raw Normal View History

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");
}
} );
} );