aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ui.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
commitb792bd46ec9b1b55bf2289faedd4ab3614c9319a (patch)
tree4b1736c703d392ec07fd4a5ae3390151470ae933 /tests/ui.js
parent4707debd645e63ea22d7a076e97a34eb3d310ebc (diff)
downloadjquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.tar.gz
jquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.zip
restructured unit tests folder
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);