aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tabs.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tabs.js')
-rw-r--r--tests/tabs.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/tabs.js b/tests/tabs.js
new file mode 100644
index 000000000..653b04f6f
--- /dev/null
+++ b/tests/tabs.js
@@ -0,0 +1,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);