aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_options.js
blob: a60b0efaf210287d00f620c258165d216ed3feb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * progressbar_options.js
 */
(function($) {

module("progressbar: options");

test("{ value : 0 }, default", function() {
	$("#progressbar").progressbar();
	same( 0, $("#progressbar").progressbar("value") );
});

test("{ value : 5 }", function() {
	$("#progressbar").progressbar({
		value: 5
	});
	same( 5, $("#progressbar").progressbar("value") );
});

})(jQuery);