diff options
author | Richard Worth <rdworth@gmail.com> | 2009-02-02 05:58:49 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-02-02 05:58:49 +0000 |
commit | c3046b9d798b406803beaf83dc42e0171672fe89 (patch) | |
tree | ffed61959b0219b836d6247c3689777c22474f16 /tests/unit/slider/slider_events.js | |
parent | 8735354b1009a4c254b661f14f87dc196859608e (diff) | |
download | jquery-ui-c3046b9d798b406803beaf83dc42e0171672fe89.tar.gz jquery-ui-c3046b9d798b406803beaf83dc42e0171672fe89.zip |
slider unit tests: created separate file for each module: core, common widget, events, methods, options, tickets
Diffstat (limited to 'tests/unit/slider/slider_events.js')
-rw-r--r-- | tests/unit/slider/slider_events.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/unit/slider/slider_events.js b/tests/unit/slider/slider_events.js new file mode 100644 index 000000000..35097d708 --- /dev/null +++ b/tests/unit/slider/slider_events.js @@ -0,0 +1,24 @@ +/* + * 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); |