aboutsummaryrefslogtreecommitdiffstats
path: root/tests/progressbar.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
commitb792bd46ec9b1b55bf2289faedd4ab3614c9319a (patch)
tree4b1736c703d392ec07fd4a5ae3390151470ae933 /tests/progressbar.js
parent4707debd645e63ea22d7a076e97a34eb3d310ebc (diff)
downloadjquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.tar.gz
jquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.zip
restructured unit tests folder
Diffstat (limited to 'tests/progressbar.js')
-rw-r--r--tests/progressbar.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/tests/progressbar.js b/tests/progressbar.js
deleted file mode 100644
index 087106510..000000000
--- a/tests/progressbar.js
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * progressbar unit tests
- */
-(function($) {
-//
-// Progressbar Test Helper Functions
-//
-
-var defaults = {
- disabled: false,
- value: 0
-};
-
-var el;
-
-// Progressbar Tests
-module("progressbar");
-
-test("init", function() {
- expect(1);
-
- $("<div></div>").appendTo('body').progressbar().remove();
- ok(true, '.progressbar() called on element');
-
-});
-
-test("destroy", function() {
- expect(1);
-
- $("<div></div>").appendTo('body').progressbar().progressbar("destroy").remove();
- ok(true, '.progressbar("destroy") called on element');
-
-});
-
-test("defaults", function() {
- el = $('<div></div>').progressbar();
- $.each(defaults, function(key, val) {
- var actual = el.data(key + ".progressbar"), expected = val;
- same(actual, expected, key);
- });
- el.remove();
-});
-
-test("set defaults on init", function() {
- el = $("#progressbar").progressbar({
- value: 50
- });
-
- equals(el.progressbar("option", "value"), 50, "value");
-});
-
-test("accessibility", function() {
- expect(7);
- el = $("#progressbar").progressbar();
-
- equals(el.attr("role"), "progressbar", "aria role");
- equals(el.attr("aria-valuemin"), 0, "aria-valuemin");
- equals(el.attr("aria-valuemax"), 100, "aria-valuemax");
- equals(el.attr("aria-valuenow"), 0, "aria-valuenow initially");
- el.progressbar("value", 77);
- equals(el.attr("aria-valuenow"), 77, "aria-valuenow");
- el.progressbar("disable");
- equals(el.attr("aria-disabled"), "true", "aria-disabled");
- el.progressbar("enable");
- equals(el.attr("aria-disabled"), "false", "enabled");
-});
-
-})(jQuery);