/* * droppable_methods.js */ (function($) { module("droppable: methods"); test("init", function() { expect(6); $("
").appendTo('body').droppable().remove(); ok(true, '.droppable() called on element'); $([]).droppable(); ok(true, '.droppable() called on empty collection'); $("
").droppable(); ok(true, '.droppable() called on disconnected DOMElement'); $("
").droppable().droppable("foo"); ok(true, 'arbitrary method called after init'); $("
").droppable().droppable("option", "foo"); ok(true, 'arbitrary option getter after init'); $("
").droppable().droppable("option", "foo", "bar"); ok(true, 'arbitrary option setter after init'); }); test("destroy", function() { $("
").appendTo('body').droppable().droppable("destroy").remove(); ok(true, '.droppable("destroy") called on element'); $([]).droppable().droppable("destroy"); ok(true, '.droppable("destroy") called on empty collection'); $("
").droppable().droppable("destroy"); ok(true, '.droppable("destroy") called on disconnected DOMElement'); $("
").droppable().droppable("destroy").droppable("foo"); ok(true, 'arbitrary method called after destroy'); var expected = $('
').droppable(), actual = expected.droppable('destroy'); equal(actual, expected, 'destroy is chainable'); }); test("enable", function() { expect(7); el = $("#droppable1").droppable({ disabled: true }); shouldNotBeDroppable(); el.droppable("enable"); shouldBeDroppable(); equal(el.droppable("option", "disabled"), false, "disabled option getter"); el.droppable("destroy"); el.droppable({ disabled: true }); shouldNotBeDroppable(); el.droppable("option", "disabled", false); equal(el.droppable("option", "disabled"), false, "disabled option setter"); shouldBeDroppable(); var expected = $('
').droppable(), actual = expected.droppable('enable'); equal(actual, expected, 'enable is chainable'); }); test("disable", function() { expect(7); el = $("#droppable1").droppable({ disabled: false }); shouldBeDroppable(); el.droppable("disable"); shouldNotBeDroppable(); equal(el.droppable("option", "disabled"), true, "disabled option getter"); el.droppable("destroy"); el.droppable({ disabled: false }); shouldBeDroppable(); el.droppable("option", "disabled", true); equal(el.droppable("option", "disabled"), true, "disabled option setter"); shouldNotBeDroppable(); var expected = $('
').droppable(), actual = expected.droppable('disable'); equal(actual, expected, 'disable is chainable'); }); })(jQuery);