aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_options.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/droppable_options.js')
-rw-r--r--tests/unit/droppable/droppable_options.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/droppable/droppable_options.js b/tests/unit/droppable/droppable_options.js
index 4df2d9ecb..19295778b 100644
--- a/tests/unit/droppable/droppable_options.js
+++ b/tests/unit/droppable/droppable_options.js
@@ -6,8 +6,6 @@
module("droppable: options");
test("{ accept '*' }, default ", function() {
- equal(droppable_defaults.accept, '*');
-
ok(false, 'missing test - untested code is broken code');
});
@@ -24,8 +22,6 @@ test("activeClass", function() {
});
test("{ addClasses: true }, default", function() {
- equal(droppable_defaults.addClasses, true);
-
el = $("<div></div>").droppable({ addClasses: true });
ok(el.is(".ui-droppable"), "'ui-droppable' class added");
el.droppable("destroy");