aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_options.js
blob: 48e74403c0c4560dc68fb3a211912ed742da8890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * droppable_options.js
 */
(function($) {

module("droppable: options");

test("{ addClasses: true }, default", function() {
	equals(droppable_defaults.addClasses, true);

	el = $("<div></div>").droppable({ addClasses: true });
	ok(el.is(".ui-droppable"), "'ui-droppable' class added");
	el.droppable("destroy");
});

test("{ addClasses: false }", function() {
	el = $("<div></div>").droppable({ addClasses: false });
	ok(!el.is(".ui-droppable"), "'ui-droppable' class not added");
	el.droppable("destroy");
});

})(jQuery);