diff options
author | John Resig <jeresig@gmail.com> | 2009-09-29 18:11:10 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-09-29 18:11:10 +0000 |
commit | f8b7d391e6baa991dd7f8761ee50871aefef71b8 (patch) | |
tree | 1ceaa464079a7333f0b790027d5023731c399ac9 /test/data/testinit.js | |
parent | 8df82d2b04505a45408c2fcf22859a4c60af2e58 (diff) | |
download | jquery-f8b7d391e6baa991dd7f8761ee50871aefef71b8.tar.gz jquery-f8b7d391e6baa991dd7f8761ee50871aefef71b8.zip |
Moved some jQuery-specific test methods into the core module.
Diffstat (limited to 'test/data/testinit.js')
-rw-r--r-- | test/data/testinit.js | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js index 41aa396b4..94d18f3b2 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -2,3 +2,46 @@ var jQuery = this.jQuery || "jQuery", // For testing .noConflict() $ = this.$ || "$", originaljQuery = jQuery, original$ = $; + +/** + * Returns an array of elements with the given IDs, eg. + * @example q("main", "foo", "bar") + * @result [<div id="main">, <span id="foo">, <input id="bar">] + */ +function q() { + var r = []; + + for ( var i = 0; i < arguments.length; i++ ) { + r.push( document.getElementById( arguments[i] ) ); + } + + return r; +} + +/** + * Asserts that a select matches the given IDs * @example t("Check for something", "//[a]", ["foo", "baar"]); + * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baa +r' + */ +function t(a,b,c) { + var f = jQuery(b), s = ""; + + for ( var i = 0; i < f.length; i++ ) { + s += (s && ",") + '"' + f[i].id + '"'; + } + + isSet(f, q.apply(q,c), a + " (" + b + ")"); +} + +/** + * Add random number to url to stop IE from caching + * + * @example url("data/test.html") + * @result "data/test.html?10538358428943" + * + * @example url("data/test.php?foo=bar") + * @result "data/test.php?foo=bar&10538358345554" + */ +function url(value) { + return value + (/\?/.test(value) ? "&" : "?") + new Date().getTime() + "" + parseInt(Math.random()*100000); +} |