aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_options.js
blob: 269f93779f9a3f157481b2dd36ff07eef167d962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * 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") );
});

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

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

})(jQuery);