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

21 lines
358 B
JavaScript
Raw Normal View History

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