aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/draggable/draggable_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/draggable/draggable_common.js
parentdc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (diff)
downloadjquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.tar.gz
jquery-ui-bde431bb449b1d957d4e0b736111ff342f2a919d.zip
Tests: Rename files
Ref gh-1528
Diffstat (limited to 'tests/unit/draggable/draggable_common.js')
-rw-r--r--tests/unit/draggable/draggable_common.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/tests/unit/draggable/draggable_common.js b/tests/unit/draggable/draggable_common.js
deleted file mode 100644
index 7ae032c0f..000000000
--- a/tests/unit/draggable/draggable_common.js
+++ /dev/null
@@ -1,48 +0,0 @@
-define( [
- "lib/common",
- "ui/draggable"
-], function( common ) {
-
-common.testWidget( "draggable", {
- defaults: {
- appendTo: "parent",
- axis: false,
- cancel: "input, textarea, button, select, option",
- classes: {},
- connectToSortable: false,
- containment: false,
- cursor: "auto",
- cursorAt: false,
- disabled: false,
- grid: false,
- handle: false,
- helper: "original",
- opacity: false,
- refreshPositions: false,
- revert: false,
- revertDuration: 500,
- scroll: true,
- scrollSensitivity: 20,
- scrollSpeed: 20,
- scope: "default",
- snap: false,
- snapMode: "both",
- snapTolerance: 20,
- stack: false,
- zIndex: false,
-
- //todo: remove the following option checks when interactions are rewritten:
- addClasses: true,
- delay: 0,
- distance: 1,
- iframeFix: false,
-
- // callbacks
- create: null,
- drag: null,
- start: null,
- stop: null
- }
-});
-
-} );