aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar/progressbar_events.js
blob: bb0d3ca5cf530ff27b113f5d82e49d5770bb2d79 (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
35
36
37
38
39
40
41
42
43
module( "progressbar: events" );

test( "create", function() {
	expect( 1 );
	$( "#progressbar" ).progressbar({
		value: 5,
		create: function() {
			deepEqual( 5, $( this ).progressbar( "value" ) );
		},
		change: function() {
			ok( false, "create() has triggered change()" );
		}
	});
});

test( "change", function() {
	expect( 1 );
	$( "#progressbar" ).progressbar({
		change: function() {
			deepEqual( 5, $( this ).progressbar( "value" ) );
		}
	}).progressbar( "value", 5 );
});

test( "complete", function() {
	expect( 3 );
	var value,
		changes = 0,
		element = $( "#progressbar" ).progressbar({
			change: function() {
				changes++;
				deepEqual( element.progressbar( "value" ), value, "change at " + value );
			},
			complete: function() {
				equal( changes, 2, "complete triggered after change" );
			}
		});

	value = 5;
	element.progressbar( "value", value );
	value = 100;
	element.progressbar( "value", value );
});