jquery-ui/tests/ui.js
2008-11-12 01:03:06 +00:00

38 lines
636 B
JavaScript

/*
* common UI unit tests
*/
(function($) {
var plugins = [
"accordion",
"datepicker",
"dialog",
"draggable",
"droppable",
"progressbar",
"resizable",
"selectable",
"slider",
"sortable",
"spinner",
"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);