aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js
diff options
context:
space:
mode:
Diffstat (limited to '97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js')
-rw-r--r--97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js b/97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js
new file mode 100644
index 0000000..973247f
--- /dev/null
+++ b/97suifangqa/staticfiles/plugins/jquery-ui/tests/unit/selectable/selectable_options.js
@@ -0,0 +1,65 @@
+/*
+ * selectable_options.js
+ */
+(function($) {
+
+module("selectable: options");
+
+test("autoRefresh", function() {
+ expect(3);
+
+ var actual = 0,
+ el = $("#selectable1"),
+ sel = $("*", el),
+ selected = function() { actual += 1; };
+
+ el = $("#selectable1").selectable({ autoRefresh: false, selected: selected });
+ sel.hide();
+ el.simulate( "drag", {
+ dx: 1000,
+ dy: 1000
+ });
+ equal(actual, sel.length);
+ el.selectable("destroy");
+
+ actual = 0;
+ sel.show();
+ el = $("#selectable1").selectable({ autoRefresh: true, selected: selected });
+ sel.hide();
+ el.simulate( "drag", {
+ dx: 1000,
+ dy: 1000
+ });
+ equal(actual, 0);
+
+ sel.show();
+ $( sel[ 0 ] ).simulate( "drag", {
+ dx: 1000,
+ dy: 1000
+ });
+ equal(actual, sel.length);
+
+ el.selectable("destroy");
+ sel.show();
+});
+
+test("filter", function() {
+ expect(2);
+
+ var actual =0,
+ el = $("#selectable1"),
+ sel = $("*", el),
+ selected = function() { actual += 1; };
+
+
+ el = $("#selectable1").selectable({ filter: ".special", selected: selected });
+ el.simulate( "drag", {
+ dx: 1000,
+ dy: 1000
+ });
+ ok(sel.length !== 1, "this test assumes more than 1 selectee");
+ equal(actual, 1);
+ el.selectable("destroy");
+});
+
+})(jQuery);