aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/selectable')
-rw-r--r--tests/unit/selectable/selectable_core.js12
-rw-r--r--tests/unit/selectable/selectable_defaults.js9
-rw-r--r--tests/unit/selectable/selectable_events.js12
-rw-r--r--tests/unit/selectable/selectable_methods.js12
-rw-r--r--tests/unit/selectable/selectable_options.js12
-rw-r--r--tests/unit/selectable/selectable_tickets.js12
6 files changed, 69 insertions, 0 deletions
diff --git a/tests/unit/selectable/selectable_core.js b/tests/unit/selectable/selectable_core.js
new file mode 100644
index 000000000..e4ccb9efd
--- /dev/null
+++ b/tests/unit/selectable/selectable_core.js
@@ -0,0 +1,12 @@
+/*
+ * selectable_core.js
+ */
+(function($) {
+
+module("selectable: core");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
diff --git a/tests/unit/selectable/selectable_defaults.js b/tests/unit/selectable/selectable_defaults.js
new file mode 100644
index 000000000..09cff3ce1
--- /dev/null
+++ b/tests/unit/selectable/selectable_defaults.js
@@ -0,0 +1,9 @@
+/*
+ * selectable_defaults.js
+ */
+
+var selectable_defaults = {
+ disabled: false
+};
+
+commonWidgetTests('selectable', { defaults: selectable_defaults });
diff --git a/tests/unit/selectable/selectable_events.js b/tests/unit/selectable/selectable_events.js
new file mode 100644
index 000000000..3fa1552ba
--- /dev/null
+++ b/tests/unit/selectable/selectable_events.js
@@ -0,0 +1,12 @@
+/*
+ * selectable_events.js
+ */
+(function($) {
+
+module("selectable: events");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
diff --git a/tests/unit/selectable/selectable_methods.js b/tests/unit/selectable/selectable_methods.js
new file mode 100644
index 000000000..54adc4f87
--- /dev/null
+++ b/tests/unit/selectable/selectable_methods.js
@@ -0,0 +1,12 @@
+/*
+ * selectable_methods.js
+ */
+(function($) {
+
+module("selectable: methods");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
diff --git a/tests/unit/selectable/selectable_options.js b/tests/unit/selectable/selectable_options.js
new file mode 100644
index 000000000..49108f4d8
--- /dev/null
+++ b/tests/unit/selectable/selectable_options.js
@@ -0,0 +1,12 @@
+/*
+ * selectable_options.js
+ */
+(function($) {
+
+module("selectable: options");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);
diff --git a/tests/unit/selectable/selectable_tickets.js b/tests/unit/selectable/selectable_tickets.js
new file mode 100644
index 000000000..8a9c9eae7
--- /dev/null
+++ b/tests/unit/selectable/selectable_tickets.js
@@ -0,0 +1,12 @@
+/*
+ * selectable_tickets.js
+ */
+(function($) {
+
+module("selectable: tickets");
+
+test("testname", function() {
+ ok(false, "missing test - untested code is broken code.");
+});
+
+})(jQuery);