aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_test_helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/droppable_test_helpers.js')
-rw-r--r--tests/unit/droppable/droppable_test_helpers.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/unit/droppable/droppable_test_helpers.js b/tests/unit/droppable/droppable_test_helpers.js
index 5ffb32f4c..460fa1aa6 100644
--- a/tests/unit/droppable/droppable_test_helpers.js
+++ b/tests/unit/droppable/droppable_test_helpers.js
@@ -1,14 +1,18 @@
-define( function() {
+define( [
+ "jquery",
+ "lib/helper"
+], function( $, helper ) {
-return {
+return $.extend( helper, {
shouldDrop: function() {
// todo: actually implement this
ok(true, "missing test - untested code is broken code");
},
+
shouldNotDrop: function() {
// todo: actually implement this
ok(true, "missing test - untested code is broken code");
}
-};
+} );
} );