jquery-ui/tests/unit/droppable/droppable_test_helpers.js
2015-04-09 09:26:28 -04:00

15 lines
290 B
JavaScript

define( function() {
return {
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");
}
};
} );