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_methods.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_methods.js')
-rw-r--r-- | tests/unit/slider/slider_methods.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/unit/slider/slider_methods.js b/tests/unit/slider/slider_methods.js new file mode 100644 index 000000000..6c966a248 --- /dev/null +++ b/tests/unit/slider/slider_methods.js @@ -0,0 +1,24 @@ +/* + * 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); |