diff options
Diffstat (limited to 'tests/unit/droppable/droppable_options.js')
-rw-r--r-- | tests/unit/droppable/droppable_options.js | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/unit/droppable/droppable_options.js b/tests/unit/droppable/droppable_options.js index c63429bc5..2f2dbf673 100644 --- a/tests/unit/droppable/droppable_options.js +++ b/tests/unit/droppable/droppable_options.js @@ -1,15 +1,21 @@ /* - * droppable_optinos.js + * droppable_options.js */ (function($) { module("droppable: options"); -test("accept, selector", function() { +test("{ accept '*' }, default ", function() { + equals(droppable_defaults.accept, '*'); + + ok(false, 'missing test - untested code is broken code'); +}); + +test("{ accept: Selector }", function() { ok(false, 'missing test - untested code is broken code'); }); -test("accept, fn", function() { +test("{ accept: function(draggable) }", function() { ok(false, 'missing test - untested code is broken code'); }); |