aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-12-26 08:08:48 -0500
committerMike Sherov <mike.sherov@gmail.com>2012-12-26 08:08:48 -0500
commit0d4022bceb33fb95c41fab768c1829d464861899 (patch)
tree8584929224e413fd6163c4000fe03b6978f969ec /tests/unit/droppable
parent74d7eac2daabce0411e98ed9d59dada551cdd911 (diff)
downloadjquery-ui-0d4022bceb33fb95c41fab768c1829d464861899.tar.gz
jquery-ui-0d4022bceb33fb95c41fab768c1829d464861899.zip
Tests: Convert single quotes to double quotes.
Diffstat (limited to 'tests/unit/droppable')
-rw-r--r--tests/unit/droppable/droppable_core.js12
-rw-r--r--tests/unit/droppable/droppable_methods.js38
-rw-r--r--tests/unit/droppable/droppable_test_helpers.js4
3 files changed, 27 insertions, 27 deletions
diff --git a/tests/unit/droppable/droppable_core.js b/tests/unit/droppable/droppable_core.js
index c98850a03..53b08fd85 100644
--- a/tests/unit/droppable/droppable_core.js
+++ b/tests/unit/droppable/droppable_core.js
@@ -7,18 +7,18 @@
module("droppable: core");
test("element types", function() {
- var typeNames = ('p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form' +
- ',table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr' +
- ',acronym,code,samp,kbd,var,img,hr' +
- ',input,button,label,select,iframe').split(',');
+ var typeNames = ("p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" +
+ ",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" +
+ ",acronym,code,samp,kbd,var,img,hr" +
+ ",input,button,label,select,iframe").split(",");
expect( typeNames.length );
$.each(typeNames, function(i) {
var typeName = typeNames[i],
- el = $(document.createElement(typeName)).appendTo('body');
+ el = $(document.createElement(typeName)).appendTo("body");
- (typeName === 'table' && el.append("<tr><td>content</td></tr>"));
+ (typeName === "table" && el.append("<tr><td>content</td></tr>"));
el.droppable();
TestHelpers.droppable.shouldDrop();
el.droppable("destroy");
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);
diff --git a/tests/unit/droppable/droppable_test_helpers.js b/tests/unit/droppable/droppable_test_helpers.js
index 79311788c..ffd374529 100644
--- a/tests/unit/droppable/droppable_test_helpers.js
+++ b/tests/unit/droppable/droppable_test_helpers.js
@@ -1,10 +1,10 @@
TestHelpers.droppable = {
shouldDrop: function() {
// todo: actually implement this
- ok(true, 'missing test - untested code is broken code');
+ ok(true, "missing test - untested code is broken code");
},
shouldNotDrop: function() {
// todo: actually implement this
- ok(true, 'missing test - untested code is broken code');
+ ok(true, "missing test - untested code is broken code");
}
}; \ No newline at end of file