X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Ftraversing.js;h=b1fd8a9bf9ba7ffa1d0414ada44ca78997bd5441;hb=c27d5ca6f5b69818c48fdc9b0f988790653fb1a5;hp=3332f077c4753824278f5828a6c328171a38ca54;hpb=5200194f517a7bde7bbe9aa50dc1e81f1e1db441;p=jquery.git diff --git a/test/unit/traversing.js b/test/unit/traversing.js index 3332f07..b1fd8a9 100644 --- a/test/unit/traversing.js +++ b/test/unit/traversing.js @@ -1,7 +1,7 @@ module("traversing"); test("find(String)", function() { - expect(4); + expect(5); equals( 'Yahoo', jQuery('#foo').find('.blogTest').text(), 'Check for find' ); // using contents will get comments regular, text, and comment nodes @@ -10,6 +10,7 @@ test("find(String)", function() { same( jQuery("#main").find("> div").get(), q("foo", "moretests", "tabindex-tests", "liveHandlerOrder", "siblingTest"), "find child elements" ); same( jQuery("#main").find("> #foo, > #moretests").get(), q("foo", "moretests"), "find child elements" ); + same( jQuery("#main").find("> #foo > p").get(), q("sndp", "en", "sap"), "find child elements" ); }); test("is(String)", function() { @@ -439,12 +440,13 @@ test("add(String|Element|Array|undefined)", function() { test("add(String, Context)", function() { expect(6); - - equals( jQuery(document).add("#form").length, 2, "Make sure that using regular context document still works." ); - equals( jQuery(document.body).add("#form").length, 2, "Using a body context." ); - equals( jQuery(document.body).add("#html").length, 1, "Using a body context." ); - - equals( jQuery(document).add("#form", document).length, 2, "Use a passed in document context." ); - equals( jQuery(document).add("#form", document.body).length, 2, "Use a passed in body context." ); - equals( jQuery(document).add("#html", document.body).length, 1, "Use a passed in body context." ); + + 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" ); + + 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" ); });