jquery-ui/tests/tabs.js
2008-09-28 11:47:07 +00:00

22 lines
233 B
JavaScript

/*
* 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);