aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tabs.js
diff options
context:
space:
mode:
authorKlaus Hartl <klaus.hartl@googlemail.com>2008-09-28 11:47:07 +0000
committerKlaus Hartl <klaus.hartl@googlemail.com>2008-09-28 11:47:07 +0000
commitc0f4c0f8efbe517737fff47ab563fce03a135334 (patch)
treec5fdde234ebe2bd84d0cee8acf5272bfce9f960a /tests/tabs.js
parentf69b4fe35e9b9600b277be32eb6a13c60dfcdaab (diff)
downloadjquery-ui-c0f4c0f8efbe517737fff47ab563fce03a135334.tar.gz
jquery-ui-c0f4c0f8efbe517737fff47ab563fce03a135334.zip
UI Tabs: started with writing tests
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);