mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
29 lines
547 B
JavaScript
29 lines
547 B
JavaScript
/*
|
|
* droppable_events.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("droppable: events");
|
|
|
|
test("activate", function() {
|
|
ok(false, 'missing test - untested code is broken code');
|
|
});
|
|
|
|
test("deactivate", function() {
|
|
ok(false, 'missing test - untested code is broken code');
|
|
});
|
|
|
|
test("over", function() {
|
|
ok(false, 'missing test - untested code is broken code');
|
|
});
|
|
|
|
test("out", function() {
|
|
ok(false, 'missing test - untested code is broken code');
|
|
});
|
|
|
|
test("drop", function() {
|
|
ok(false, 'missing test - untested code is broken code');
|
|
});
|
|
|
|
})(jQuery);
|