2009-02-02 07:09:15 +00:00
|
|
|
/*
|
|
|
|
* droppable_events.js
|
|
|
|
*/
|
|
|
|
(function($) {
|
|
|
|
|
|
|
|
module("droppable: events");
|
|
|
|
|
2012-10-23 14:36:42 +00:00
|
|
|
// this is here to make JSHint pass "unused", and we don't want to
|
|
|
|
// remove the parameter for when we finally implement
|
|
|
|
$.noop();
|
|
|
|
|
2012-10-31 02:19:49 +00:00
|
|
|
// todo: comment the following in when ready to actually test
|
|
|
|
/*
|
2009-02-02 07:09:15 +00:00
|
|
|
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');
|
|
|
|
});
|
2012-10-31 02:19:49 +00:00
|
|
|
*/
|
2009-02-02 07:09:15 +00:00
|
|
|
|
|
|
|
})(jQuery);
|