aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui.js')
-rw-r--r--tests/ui.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/ui.js b/tests/ui.js
deleted file mode 100644
index 03bbf405e..000000000
--- a/tests/ui.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * common UI unit tests
- */
-(function($) {
-
-var plugins = [
- "accordion",
- "datepicker",
- "dialog",
- "draggable",
- "droppable",
- "progressbar",
- "resizable",
- "selectable",
- "slider",
- "sortable",
- "tabs"
-];
-
-module("version");
-
-test("core", function() {
- equals($.ui.version, "@VERSION", "$.ui.version");
-});
-
-$(plugins).each(function() {
- var pluginName = this;
- test(pluginName, function() {
- if ($.ui[pluginName])
- equals($.ui[pluginName].version, "@VERSION", "$.ui." + pluginName + ".version");
- else
- ok(false, "$.ui." + pluginName + " undefined.");
- });
-});
-
-})(jQuery);