Removed the lib directory, will be generated automatically.
[jquery.git] / build / js / lib / test.js
diff --git a/build/js/lib/test.js b/build/js/lib/test.js
deleted file mode 100644 (file)
index 7465817..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-function q() {
-       var r = new Array();
-       for ( var i = 0; i < arguments.length; i++ ) {
-               r.push( document.getElementById( arguments[i] ) );
-       }
-       return r;
-}
-
-function t(a,b,c) {
-       var f = jQuery.find(b);
-       var s = "";
-       for ( var i = 0; i < f.length; i++ )
-               s += (s?",":"") + '"' + f[i].id + '"';
-       isSet(f,q.apply(q,c),a + " (" + b + ")") ||
-               diag( s );
-}
-
-function o(a) {
-       var li = document.createElement("li");
-       li.innerHTML = a;
-       if ( a.indexOf("#") == 0 )
-               li.className = "comment";
-       else if ( a.indexOf("TODO") >= 0 )
-               li.className = "todo";
-       else if ( a.indexOf("not ok") == 0 )
-               li.classname = "fail";
-       else
-               li.className = "pass";
-       document.getElementById("test").appendChild(li);
-}
-
-plan({noPlan: true});