aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/draggable
diff options
context:
space:
mode:
authorJustinMacCarthy <Justin@Rubystars.biz>2010-07-16 01:16:07 +0800
committerScott González <scott.gonzalez@gmail.com>2010-07-16 02:44:08 +0800
commit05368115bb40b6123048e6b144b5a04ecde68d79 (patch)
tree4a3bbd9865a54e6489efc0cfee2204fe598243b0 /tests/unit/draggable
parentf24bc0fb1f63e7f5e38014d7191a4fe69d4179f0 (diff)
downloadjquery-ui-05368115bb40b6123048e6b144b5a04ecde68d79.tar.gz
jquery-ui-05368115bb40b6123048e6b144b5a04ecde68d79.zip
added empty test for containment by array option
Diffstat (limited to 'tests/unit/draggable')
-rw-r--r--tests/unit/draggable/draggable_options.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/draggable/draggable_options.js b/tests/unit/draggable/draggable_options.js
index 78f6c563e..8ba77fb93 100644
--- a/tests/unit/draggable/draggable_options.js
+++ b/tests/unit/draggable/draggable_options.js
@@ -202,6 +202,10 @@ test("{ containment: Selector }", function() {
ok(false, 'missing test - untested code is broken code');
});
+test("{ containment: [x1, y1, x2, y2] }", function() {
+ ok(false, 'missing test - untested code is broken code');
+});
+
test("{ cursor: 'auto' }, default", function() {
equals(draggable_defaults.cursor, 'auto');