r1966 - in trunk/tests/unit: accordion datepicker dialog progressbar resizable selectable sortabl...
Author: rdworth
Date: Mon Feb 2 06:36:08 2009
New Revision: 1966
Added:
trunk/tests/unit/accordion/accordion_core.js (contents, props changed)
trunk/tests/unit/accordion/accordion_defaults.js (contents, props
changed)
trunk/tests/unit/accordion/accordion_events.js (contents, props
changed)
trunk/tests/unit/accordion/accordion_methods.js (contents, props
changed)
trunk/tests/unit/accordion/accordion_options.js (contents, props
changed)
trunk/tests/unit/accordion/accordion_tickets.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_core.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_defaults.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_events.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_methods.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_options.js (contents, props
changed)
trunk/tests/unit/datepicker/datepicker_tickets.js (contents, props
changed)
trunk/tests/unit/dialog/dialog_core.js (contents, props changed)
trunk/tests/unit/dialog/dialog_defaults.js (contents, props changed)
trunk/tests/unit/dialog/dialog_events.js (contents, props changed)
trunk/tests/unit/dialog/dialog_methods.js (contents, props changed)
trunk/tests/unit/dialog/dialog_options.js (contents, props changed)
trunk/tests/unit/dialog/dialog_tickets.js (contents, props changed)
trunk/tests/unit/progressbar/progressbar_core.js (contents, props
changed)
trunk/tests/unit/progressbar/progressbar_defaults.js (contents, props
changed)
trunk/tests/unit/progressbar/progressbar_events.js (contents, props
changed)
trunk/tests/unit/progressbar/progressbar_methods.js (contents, props
changed)
trunk/tests/unit/progressbar/progressbar_options.js (contents, props
changed)
trunk/tests/unit/progressbar/progressbar_tickets.js (contents, props
changed)
trunk/tests/unit/resizable/resizable_core.js (contents, props changed)
trunk/tests/unit/resizable/resizable_defaults.js (contents, props
changed)
trunk/tests/unit/resizable/resizable_events.js (contents, props
changed)
trunk/tests/unit/resizable/resizable_methods.js (contents, props
changed)
trunk/tests/unit/resizable/resizable_options.js (contents, props
changed)
trunk/tests/unit/resizable/resizable_tickets.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_core.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_defaults.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_events.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_methods.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_options.js (contents, props
changed)
trunk/tests/unit/selectable/selectable_tickets.js (contents, props
changed)
trunk/tests/unit/sortable/sortable_core.js (contents, props changed)
trunk/tests/unit/sortable/sortable_defaults.js (contents, props
changed)
trunk/tests/unit/sortable/sortable_events.js (contents, props changed)
trunk/tests/unit/sortable/sortable_methods.js (contents, props changed)
trunk/tests/unit/sortable/sortable_options.js (contents, props changed)
trunk/tests/unit/sortable/sortable_tickets.js (contents, props changed)
trunk/tests/unit/tabs/tabs_core.js (contents, props changed)
trunk/tests/unit/tabs/tabs_defaults.js (contents, props changed)
trunk/tests/unit/tabs/tabs_events.js (contents, props changed)
trunk/tests/unit/tabs/tabs_methods.js (contents, props changed)
trunk/tests/unit/tabs/tabs_options.js (contents, props changed)
trunk/tests/unit/tabs/tabs_tickets.js (contents, props changed)
Log:
unit tests: created separate file for each module: core, common widget,
events, methods, options, tickets
Added: trunk/tests/unit/accordion/accordion_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * accordion_core.js
+ */
+(function($) {
+
+module("accordion: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/accordion/accordion_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_defaults.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,9 @@
+/*
+ * accordion_defaults.js
+ */
+
+var accordion_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('accordion', { defaults: accordion_defaults });
Added: trunk/tests/unit/accordion/accordion_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_events.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * accordion_events.js
+ */
+(function($) {
+
+module("accordion: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/accordion/accordion_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_methods.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * accordion_methods.js
+ */
+(function($) {
+
+module("accordion: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/accordion/accordion_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_options.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * accordion_options.js
+ */
+(function($) {
+
+module("accordion: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/accordion/accordion_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/accordion/accordion_tickets.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * accordion_tickets.js
+ */
+(function($) {
+
+module("accordion: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/datepicker/datepicker_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * datepicker_core.js
+ */
+(function($) {
+
+module("datepicker: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/datepicker/datepicker_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_defaults.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,9 @@
+/*
+ * datepicker_defaults.js
+ */
+
+var datepicker_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('datepicker', { defaults: datepicker_defaults });
Added: trunk/tests/unit/datepicker/datepicker_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_events.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * datepicker_events.js
+ */
+(function($) {
+
+module("datepicker: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/datepicker/datepicker_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_methods.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * datepicker_methods.js
+ */
+(function($) {
+
+module("datepicker: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/datepicker/datepicker_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_options.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * datepicker_options.js
+ */
+(function($) {
+
+module("datepicker: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/datepicker/datepicker_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/datepicker/datepicker_tickets.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * datepicker_tickets.js
+ */
+(function($) {
+
+module("datepicker: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/dialog/dialog_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * dialog_core.js
+ */
+(function($) {
+
+module("dialog: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/dialog/dialog_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_defaults.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,9 @@
+/*
+ * dialog_defaults.js
+ */
+
+var dialog_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('dialog', { defaults: dialog_defaults });
Added: trunk/tests/unit/dialog/dialog_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_events.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * dialog_events.js
+ */
+(function($) {
+
+module("dialog: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/dialog/dialog_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_methods.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * dialog_methods.js
+ */
+(function($) {
+
+module("dialog: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/dialog/dialog_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_options.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * dialog_options.js
+ */
+(function($) {
+
+module("dialog: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/dialog/dialog_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/dialog/dialog_tickets.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * dialog_tickets.js
+ */
+(function($) {
+
+module("dialog: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/progressbar/progressbar_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_core.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * progressbar_core.js
+ */
+(function($) {
+
+module("progressbar: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/progressbar/progressbar_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_defaults.js Mon Feb 2
06:36:08 2009
@@ -0,0 +1,9 @@
+/*
+ * progressbar_defaults.js
+ */
+
+var progressbar_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('progressbar', { defaults: progressbar_defaults });
Added: trunk/tests/unit/progressbar/progressbar_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_events.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * progressbar_events.js
+ */
+(function($) {
+
+module("progressbar: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/progressbar/progressbar_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_methods.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * progressbar_methods.js
+ */
+(function($) {
+
+module("progressbar: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/progressbar/progressbar_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_options.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * progressbar_options.js
+ */
+(function($) {
+
+module("progressbar: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/progressbar/progressbar_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/progressbar/progressbar_tickets.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * progressbar_tickets.js
+ */
+(function($) {
+
+module("progressbar: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/resizable/resizable_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * resizable_core.js
+ */
+(function($) {
+
+module("resizable: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/resizable/resizable_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_defaults.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,9 @@
+/*
+ * resizable_defaults.js
+ */
+
+var resizable_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('resizable', { defaults: resizable_defaults });
Added: trunk/tests/unit/resizable/resizable_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_events.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * resizable_events.js
+ */
+(function($) {
+
+module("resizable: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/resizable/resizable_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_methods.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * resizable_methods.js
+ */
+(function($) {
+
+module("resizable: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/resizable/resizable_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_options.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * resizable_options.js
+ */
+(function($) {
+
+module("resizable: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/resizable/resizable_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/resizable/resizable_tickets.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * resizable_tickets.js
+ */
+(function($) {
+
+module("resizable: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/selectable/selectable_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * selectable_core.js
+ */
+(function($) {
+
+module("selectable: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/selectable/selectable_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_defaults.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,9 @@
+/*
+ * selectable_defaults.js
+ */
+
+var selectable_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('selectable', { defaults: selectable_defaults });
Added: trunk/tests/unit/selectable/selectable_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_events.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * selectable_events.js
+ */
+(function($) {
+
+module("selectable: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/selectable/selectable_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_methods.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * selectable_methods.js
+ */
+(function($) {
+
+module("selectable: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/selectable/selectable_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_options.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * selectable_options.js
+ */
+(function($) {
+
+module("selectable: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/selectable/selectable_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/selectable/selectable_tickets.js Mon Feb 2 06:36:08
2009
@@ -0,0 +1,12 @@
+/*
+ * selectable_tickets.js
+ */
+(function($) {
+
+module("selectable: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/sortable/sortable_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * sortable_core.js
+ */
+(function($) {
+
+module("sortable: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/sortable/sortable_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_defaults.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,9 @@
+/*
+ * sortable_defaults.js
+ */
+
+var sortable_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('sortable', { defaults: sortable_defaults });
Added: trunk/tests/unit/sortable/sortable_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_events.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * sortable_events.js
+ */
+(function($) {
+
+module("sortable: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/sortable/sortable_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_methods.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * sortable_methods.js
+ */
+(function($) {
+
+module("sortable: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/sortable/sortable_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_options.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * sortable_options.js
+ */
+(function($) {
+
+module("sortable: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/sortable/sortable_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/sortable/sortable_tickets.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * sortable_tickets.js
+ */
+(function($) {
+
+module("sortable: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/tabs/tabs_core.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_core.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * tabs_core.js
+ */
+(function($) {
+
+module("tabs: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/tabs/tabs_defaults.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_defaults.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,9 @@
+/*
+ * tabs_defaults.js
+ */
+
+var tabs_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('tabs', { defaults: tabs_defaults });
Added: trunk/tests/unit/tabs/tabs_events.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_events.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * tabs_events.js
+ */
+(function($) {
+
+module("tabs: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/tabs/tabs_methods.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_methods.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * tabs_methods.js
+ */
+(function($) {
+
+module("tabs: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/tabs/tabs_options.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_options.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * tabs_options.js
+ */
+(function($) {
+
+module("tabs: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
Added: trunk/tests/unit/tabs/tabs_tickets.js
==============================================================================
--- (empty file)
+++ trunk/tests/unit/tabs/tabs_tickets.js Mon Feb 2 06:36:08 2009
@@ -0,0 +1,12 @@
+/*
+ * tabs_tickets.js
+ */
+(function($) {
+
+module("tabs: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);