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
44
45
46
47
|
/*
* tabs_events.js
*/
(function($) {
module("tabs: events");
test('select', function() {
ok(false, "missing test - untested code is broken code.");
});
test('load', function() {
ok(false, "missing test - untested code is broken code.");
});
test('show', function() {
expect(3);
var uiObj;
el = $('#tabs1').tabs({
show: function(event, ui) {
uiObj = ui;
}
});
equals(uiObj.tab, $('#tabs1 a')[0], 'should have tab as DOM anchor element');
equals(uiObj.panel, $('#tabs1 div')[0], 'should have panel as DOM div element');
equals(uiObj.index, 0, ' should have index');
});
test('add', function() {
ok(false, "missing test - untested code is broken code.");
});
test('remove', function() {
ok(false, "missing test - untested code is broken code.");
});
test('enable', function() {
ok(false, "missing test - untested code is broken code.");
});
test('disable', function() {
ok(false, "missing test - untested code is broken code.");
});
})(jQuery);
|