jquery-ui/tests/unit/sortable/sortable_options.js

41 lines
966 B
JavaScript

/*
* sortable_options.js
*/
(function($) {
module("sortable: options");
test("{ appendTo: 'parent' }, default", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ appendTo: Selector }", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ axis: false }, default", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ axis: 'x' }", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ axis: 'y' }", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ axis: ? }, unexpected", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ cancel: ':input,button' }, default", function() {
ok(false, "missing test - untested code is broken code.");
});
test("{ cancel: Selector }", function() {
ok(false, "missing test - untested code is broken code.");
});
})(jQuery);