diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-14 22:08:51 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:39 -0400 |
commit | 657b6d0f5862ca14f2bb996e105b20f0654483b6 (patch) | |
tree | b7c9f8a65b3d0e3d815777c69fd0b29f64fc680e /tests | |
parent | 149a1a2a824b09cec0202eba77ed3e51e9c165ae (diff) | |
download | jquery-ui-657b6d0f5862ca14f2bb996e105b20f0654483b6.tar.gz jquery-ui-657b6d0f5862ca14f2bb996e105b20f0654483b6.zip |
Sortable: Move sortable into widgets folder
Ref #13885
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/draggable/options.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/common.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/core.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/events.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/methods.js | 2 | ||||
-rw-r--r-- | tests/unit/sortable/options.js | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/tests/unit/draggable/options.js b/tests/unit/draggable/options.js index 9be43b384..e1fd8288a 100644 --- a/tests/unit/draggable/options.js +++ b/tests/unit/draggable/options.js @@ -3,7 +3,7 @@ define( [ "./helper", "ui/widgets/draggable", "ui/widgets/droppable", - "ui/sortable" + "ui/widgets/sortable" ], function( $, testHelper ) { // TODO: This doesn't actually test whether append happened, possibly remove diff --git a/tests/unit/sortable/common.js b/tests/unit/sortable/common.js index ab43251ab..aefb28b70 100644 --- a/tests/unit/sortable/common.js +++ b/tests/unit/sortable/common.js @@ -1,6 +1,6 @@ define( [ "lib/common", - "ui/sortable" + "ui/widgets/sortable" ], function( common ) { common.testWidget( "sortable", { diff --git a/tests/unit/sortable/core.js b/tests/unit/sortable/core.js index 7e973ec05..68f275604 100644 --- a/tests/unit/sortable/core.js +++ b/tests/unit/sortable/core.js @@ -1,7 +1,7 @@ define( [ "jquery", "./helper", - "ui/sortable" + "ui/widgets/sortable" ], function( $, testHelper ) { module( "sortable: core" ); diff --git a/tests/unit/sortable/events.js b/tests/unit/sortable/events.js index f487e6380..bf5579fde 100644 --- a/tests/unit/sortable/events.js +++ b/tests/unit/sortable/events.js @@ -1,7 +1,7 @@ define( [ "jquery", "./helper", - "ui/sortable", + "ui/widgets/sortable", "ui/widgets/draggable" ], function( $, testHelper ) { diff --git a/tests/unit/sortable/methods.js b/tests/unit/sortable/methods.js index d88b8089f..f58ac052d 100644 --- a/tests/unit/sortable/methods.js +++ b/tests/unit/sortable/methods.js @@ -1,7 +1,7 @@ define( [ "jquery", "./helper", - "ui/sortable" + "ui/widgets/sortable" ], function( $, testHelper ) { module("sortable: methods"); diff --git a/tests/unit/sortable/options.js b/tests/unit/sortable/options.js index 930f339e6..744839096 100644 --- a/tests/unit/sortable/options.js +++ b/tests/unit/sortable/options.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/sortable" + "ui/widgets/sortable" ], function( $ ) { module("sortable: options"); |