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

22 lines
405 B
JavaScript
Raw Normal View History

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