imported the whole jquery-ui package, refreshed with 1.10.2
[unfold.git] / third-party / jquery-ui-1.10.2 / tests / unit / subsuite.js
diff --git a/third-party/jquery-ui-1.10.2/tests/unit/subsuite.js b/third-party/jquery-ui-1.10.2/tests/unit/subsuite.js
new file mode 100644 (file)
index 0000000..1efb2f8
--- /dev/null
@@ -0,0 +1,24 @@
+(function() {
+
+var versions = [
+               "1.6", "1.6.1", "1.6.2", "1.6.3", "1.6.4",
+               "1.7", "1.7.1", "1.7.2",
+               "1.8.0", "1.8.1", "1.8.2", "1.8.3",
+               "1.9.0", "1.9.1",
+               "git"
+       ],
+       additionalTests = {
+               // component: [ "other_test.html" ]
+       };
+
+window.testAllVersions = function( widget ) {
+       QUnit.testSuites( $.map(
+               [ widget + ".html" ].concat( additionalTests[ widget ] || [] ),
+               function( test ) {
+                       return $.map( versions, function( version ) {
+                               return test + "?jquery=" + version;
+                       });
+               }));
+};
+
+}());