aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_events.js
blob: f22a035407e370572188e39b520699cda97fe111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * 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);