aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2011-01-19 21:02:46 -0500
committerDave Methvin <dave.methvin@gmail.com>2011-01-19 21:02:46 -0500
commit948c0dfffcf077ed71e4712b38a33d06ea63264c (patch)
treef86a82da50a1134da7c4a05a8e3c1f20ce7edb2b
parentc27d5ca6f5b69818c48fdc9b0f988790653fb1a5 (diff)
downloadjquery-948c0dfffcf077ed71e4712b38a33d06ea63264c.tar.gz
jquery-948c0dfffcf077ed71e4712b38a33d06ea63264c.zip
Rework unit tests to check actual result elements.
-rw-r--r--test/unit/traversing.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/traversing.js b/test/unit/traversing.js
index b1fd8a9bf..e4b3e9537 100644
--- a/test/unit/traversing.js
+++ b/test/unit/traversing.js
@@ -441,12 +441,12 @@ test("add(String|Element|Array|undefined)", function() {
test("add(String, Context)", function() {
expect(6);
- equals( jQuery("#firstp").add("#ap").length, 2, "Add selector to selector" );
- equals( jQuery(document.getElementById("firstp")).add("#ap").length, 2, "Add gEBId to selector" );
- equals( jQuery(document.getElementById("firstp")).add(document.getElementById("ap")).length, 2, "Add gEBId to gEBId" );
+ deepEqual( jQuery( "#firstp" ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add selector to selector " );
+ deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add gEBId to selector" );
+ deepEqual( jQuery( document.getElementById("firstp") ).add( document.getElementById("ap") ).get(), q( "firstp", "ap" ), "Add gEBId to gEBId" );
var ctx = document.getElementById("firstp");
- equals( jQuery("#firstp").add("#ap", ctx).length, 1, "Add selector to selector with context" );
- equals( jQuery(document.getElementById("firstp")).add("#ap", ctx).length, 1, "Add gEBId to selector with context" );
- equals( jQuery(document.getElementById("firstp")).add(document.getElementById("ap"), ctx).length, 2, "Add gEBId to gEBId with context" );
+ deepEqual( jQuery( "#firstp" ).add( "#ap", ctx ).get(), q( "firstp" ), "Add selector to selector " );
+ deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", ctx ).get(), q( "firstp" ), "Add gEBId to selector, not in context" );
+ deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", document.getElementsByTagName("body")[0] ).get(), q( "firstp", "ap" ), "Add gEBId to selector, in context" );
});