aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_methods.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/droppable_methods.js')
-rw-r--r--tests/unit/droppable/droppable_methods.js38
1 files changed, 19 insertions, 19 deletions
diff --git a/tests/unit/droppable/droppable_methods.js b/tests/unit/droppable/droppable_methods.js
index 76501c5b1..2b452a63d 100644
--- a/tests/unit/droppable/droppable_methods.js
+++ b/tests/unit/droppable/droppable_methods.js
@@ -8,37 +8,37 @@ module("droppable: methods");
test("init", function() {
expect( 5 );
- $("<div></div>").appendTo('body').droppable().remove();
- ok(true, '.droppable() called on element');
+ $("<div></div>").appendTo("body").droppable().remove();
+ ok(true, ".droppable() called on element");
$([]).droppable();
- ok(true, '.droppable() called on empty collection');
+ ok(true, ".droppable() called on empty collection");
$("<div></div>").droppable();
- ok(true, '.droppable() called on disconnected DOMElement');
+ ok(true, ".droppable() called on disconnected DOMElement");
$("<div></div>").droppable().droppable("option", "foo");
- ok(true, 'arbitrary option getter after init');
+ ok(true, "arbitrary option getter after init");
$("<div></div>").droppable().droppable("option", "foo", "bar");
- ok(true, 'arbitrary option setter after init');
+ ok(true, "arbitrary option setter after init");
});
test("destroy", function() {
expect( 4 );
- $("<div></div>").appendTo('body').droppable().droppable("destroy").remove();
- ok(true, '.droppable("destroy") called on element');
+ $("<div></div>").appendTo("body").droppable().droppable("destroy").remove();
+ ok(true, ".droppable('destroy') called on element");
$([]).droppable().droppable("destroy");
- ok(true, '.droppable("destroy") called on empty collection');
+ ok(true, ".droppable('destroy') called on empty collection");
$("<div></div>").droppable().droppable("destroy");
- ok(true, '.droppable("destroy") called on disconnected DOMElement');
+ ok(true, ".droppable('destroy') called on disconnected DOMElement");
- var expected = $('<div></div>').droppable(),
- actual = expected.droppable('destroy');
- equal(actual, expected, 'destroy is chainable');
+ var expected = $("<div></div>").droppable(),
+ actual = expected.droppable("destroy");
+ equal(actual, expected, "destroy is chainable");
});
test("enable", function() {
@@ -58,9 +58,9 @@ test("enable", function() {
equal(el.droppable("option", "disabled"), false, "disabled option setter");
TestHelpers.droppable.shouldDrop();
- expected = $('<div></div>').droppable(),
- actual = expected.droppable('enable');
- equal(actual, expected, 'enable is chainable');
+ expected = $("<div></div>").droppable(),
+ actual = expected.droppable("enable");
+ equal(actual, expected, "enable is chainable");
});
test("disable", function() {
@@ -80,9 +80,9 @@ test("disable", function() {
equal(el.droppable("option", "disabled"), true, "disabled option setter");
TestHelpers.droppable.shouldNotDrop();
- expected = $('<div></div>').droppable(),
- actual = expected.droppable('disable');
- equal(actual, expected, 'disable is chainable');
+ expected = $("<div></div>").droppable(),
+ actual = expected.droppable("disable");
+ equal(actual, expected, "disable is chainable");
});
})(jQuery);