aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/helper.js')
-rw-r--r--tests/unit/droppable/helper.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/unit/droppable/helper.js b/tests/unit/droppable/helper.js
new file mode 100644
index 000000000..460fa1aa6
--- /dev/null
+++ b/tests/unit/droppable/helper.js
@@ -0,0 +1,18 @@
+define( [
+ "jquery",
+ "lib/helper"
+], function( $, helper ) {
+
+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");
+ }
+} );
+
+} );