aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/common.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-07 10:55:52 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:27:00 -0400
commitbde431bb449b1d957d4e0b736111ff342f2a919d (patch)
tree27fd40037c30dbff8ef3b6113e90817ab96b53bf /tests/unit/droppable/common.js
parentdc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (diff)
downloadjquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.tar.gz
jquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.zip
Tests: Rename files
Ref gh-1528
Diffstat (limited to 'tests/unit/droppable/common.js')
-rw-r--r--tests/unit/droppable/common.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/unit/droppable/common.js b/tests/unit/droppable/common.js
new file mode 100644
index 000000000..ef8e11692
--- /dev/null
+++ b/tests/unit/droppable/common.js
@@ -0,0 +1,26 @@
+define( [
+ "lib/common",
+ "ui/droppable"
+], function( common ) {
+
+common.testWidget( "droppable", {
+ defaults: {
+ accept: "*",
+ addClasses: true,
+ classes: {},
+ disabled: false,
+ greedy: false,
+ scope: "default",
+ tolerance: "intersect",
+
+ // callbacks
+ activate: null,
+ create: null,
+ deactivate: null,
+ drop: null,
+ out: null,
+ over: null
+ }
+});
+
+} );