mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
70dae67b73
Fixes #15393 Closes gh-1958
23 lines
419 B
JavaScript
23 lines
419 B
JavaScript
define( [
|
|
"qunit",
|
|
"jquery",
|
|
"lib/helper"
|
|
], function( QUnit, $, helper ) {
|
|
"use strict";
|
|
|
|
return $.extend( helper, {
|
|
shouldDrop: function( assert ) {
|
|
|
|
// Todo: actually implement this
|
|
assert.ok( true, "missing test - untested code is broken code" );
|
|
},
|
|
|
|
shouldNotDrop: function( assert ) {
|
|
|
|
// Todo: actually implement this
|
|
assert.ok( true, "missing test - untested code is broken code" );
|
|
}
|
|
} );
|
|
|
|
} );
|