mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
25 lines
456 B
JavaScript
25 lines
456 B
JavaScript
/*
|
|
* slider_methods.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("slider: methods");
|
|
|
|
test("value", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
test("values", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
test("enable", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
test("disable", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
})(jQuery);
|