mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
25 lines
450 B
JavaScript
25 lines
450 B
JavaScript
|
/*
|
||
|
* slider_events.js
|
||
|
*/
|
||
|
(function($) {
|
||
|
|
||
|
module("slider: events");
|
||
|
|
||
|
test("start", function() {
|
||
|
ok(false, "missing test - untested code is broken code.");
|
||
|
});
|
||
|
|
||
|
test("slide", function() {
|
||
|
ok(false, "missing test - untested code is broken code.");
|
||
|
});
|
||
|
|
||
|
test("change", function() {
|
||
|
ok(false, "missing test - untested code is broken code.");
|
||
|
});
|
||
|
|
||
|
test("stop", function() {
|
||
|
ok(false, "missing test - untested code is broken code.");
|
||
|
});
|
||
|
|
||
|
})(jQuery);
|