diff options
Diffstat (limited to 'tests/unit/droppable/droppable_test_helpers.js')
-rw-r--r-- | tests/unit/droppable/droppable_test_helpers.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/droppable/droppable_test_helpers.js b/tests/unit/droppable/droppable_test_helpers.js index ce972be63..5ffb32f4c 100644 --- a/tests/unit/droppable/droppable_test_helpers.js +++ b/tests/unit/droppable/droppable_test_helpers.js @@ -1,4 +1,6 @@ -TestHelpers.droppable = { +define( function() { + +return { shouldDrop: function() { // todo: actually implement this ok(true, "missing test - untested code is broken code"); @@ -8,3 +10,5 @@ TestHelpers.droppable = { ok(true, "missing test - untested code is broken code"); } }; + +} ); |