diff options
author | Richard Worth <rdworth@gmail.com> | 2009-02-02 14:36:08 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-02-02 14:36:08 +0000 |
commit | 43ab3a04e549a31a0872b03f22d1e26ad22c2cb4 (patch) | |
tree | cc54ea5e747c3f8c1200c641dbe7fb6f96549922 /tests/unit/progressbar | |
parent | bf16dc1853dca7961947158a1d3be430362386eb (diff) | |
download | jquery-ui-43ab3a04e549a31a0872b03f22d1e26ad22c2cb4.tar.gz jquery-ui-43ab3a04e549a31a0872b03f22d1e26ad22c2cb4.zip |
unit tests: created separate file for each module: core, common widget, events, methods, options, tickets
Diffstat (limited to 'tests/unit/progressbar')
-rw-r--r-- | tests/unit/progressbar/progressbar_core.js | 12 | ||||
-rw-r--r-- | tests/unit/progressbar/progressbar_defaults.js | 9 | ||||
-rw-r--r-- | tests/unit/progressbar/progressbar_events.js | 12 | ||||
-rw-r--r-- | tests/unit/progressbar/progressbar_methods.js | 12 | ||||
-rw-r--r-- | tests/unit/progressbar/progressbar_options.js | 12 | ||||
-rw-r--r-- | tests/unit/progressbar/progressbar_tickets.js | 12 |
6 files changed, 69 insertions, 0 deletions
diff --git a/tests/unit/progressbar/progressbar_core.js b/tests/unit/progressbar/progressbar_core.js new file mode 100644 index 000000000..b104ffe38 --- /dev/null +++ b/tests/unit/progressbar/progressbar_core.js @@ -0,0 +1,12 @@ +/* + * progressbar_core.js + */ +(function($) { + +module("progressbar: core"); + +test("testname", function() { + ok(false, "missing test - untested code is broken code."); +}); + +})(jQuery); diff --git a/tests/unit/progressbar/progressbar_defaults.js b/tests/unit/progressbar/progressbar_defaults.js new file mode 100644 index 000000000..70934818c --- /dev/null +++ b/tests/unit/progressbar/progressbar_defaults.js @@ -0,0 +1,9 @@ +/* + * progressbar_defaults.js + */ + +var progressbar_defaults = { + disabled: false +}; + +commonWidgetTests('progressbar', { defaults: progressbar_defaults }); diff --git a/tests/unit/progressbar/progressbar_events.js b/tests/unit/progressbar/progressbar_events.js new file mode 100644 index 000000000..26f2500ec --- /dev/null +++ b/tests/unit/progressbar/progressbar_events.js @@ -0,0 +1,12 @@ +/* + * progressbar_events.js + */ +(function($) { + +module("progressbar: events"); + +test("testname", function() { + ok(false, "missing test - untested code is broken code."); +}); + +})(jQuery); diff --git a/tests/unit/progressbar/progressbar_methods.js b/tests/unit/progressbar/progressbar_methods.js new file mode 100644 index 000000000..810d33a11 --- /dev/null +++ b/tests/unit/progressbar/progressbar_methods.js @@ -0,0 +1,12 @@ +/* + * progressbar_methods.js + */ +(function($) { + +module("progressbar: methods"); + +test("testname", function() { + ok(false, "missing test - untested code is broken code."); +}); + +})(jQuery); diff --git a/tests/unit/progressbar/progressbar_options.js b/tests/unit/progressbar/progressbar_options.js new file mode 100644 index 000000000..4699a11e4 --- /dev/null +++ b/tests/unit/progressbar/progressbar_options.js @@ -0,0 +1,12 @@ +/* + * progressbar_options.js + */ +(function($) { + +module("progressbar: options"); + +test("testname", function() { + ok(false, "missing test - untested code is broken code."); +}); + +})(jQuery); diff --git a/tests/unit/progressbar/progressbar_tickets.js b/tests/unit/progressbar/progressbar_tickets.js new file mode 100644 index 000000000..198b0b852 --- /dev/null +++ b/tests/unit/progressbar/progressbar_tickets.js @@ -0,0 +1,12 @@ +/* + * progressbar_tickets.js + */ +(function($) { + +module("progressbar: tickets"); + +test("testname", function() { + ok(false, "missing test - untested code is broken code."); +}); + +})(jQuery); |