]> source.dussan.org Git - jquery-ui.git/commitdiff
Failing test for #4037 (droppable: cssNamespace option should be removed, addClasses...
authorRichard Worth <rdworth@gmail.com>
Mon, 2 Feb 2009 07:14:19 +0000 (07:14 +0000)
committerRichard Worth <rdworth@gmail.com>
Mon, 2 Feb 2009 07:14:19 +0000 (07:14 +0000)
tests/unit/droppable/droppable_defaults.js
tests/unit/droppable/droppable_options.js

index 0c25bb686126addcfb9d812686a9937dbd00d057..1c175631b2139b61adb62b5133a23fa1b929a177 100644 (file)
@@ -3,9 +3,9 @@
  */
 
 var droppable_defaults = {
+       addClasses: true,
        accept: '*',
        activeClass: false,
-       cssNamespace: "ui",
        disabled: false,
        greedy: false,
        hoverClass: false,
index a6b5bbe751838c522c1768057b8ed1d285fb9bab..2df2dcb15c88ac4a3782cbf6a2d4696d0830d6cd 100644 (file)
@@ -17,6 +17,18 @@ test("activeClass", function() {
        ok(false, 'missing test - untested code is broken code');
 });
 
+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");
+});
+
+test("{ addClasses: false }", function() {
+       el = $("<div></div>").droppable({ addClasses: false });
+       ok(!el.is(".ui-droppable"), "'ui-droppable' class not added");
+});
+
 test("cssNamespace", function() {
        //cssNamespace should be appended with '-droppable' and added as className
        el = $("<div></div>").droppable({ cssNamespace: "ui" });