aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tabs.js
blob: 653b04f6f9dde967e4f179b194f59d183a30fe68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * tabs unit tests
 */
(function($) {
//
// Tabs Test Helper Functions
//


// Tabs Tests
module("tabs");

test("init", function() {
	expect(1);

	el = $("#tabs1").tabs();
	ok(true, '.tabs() called on element');
});


})(jQuery);