X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcore.js;h=25ff1f57336c976059b27339f865d08c394ef88e;hb=b0fe380cf89564305646bbd55d1fd7bd210fd591;hp=e67bc52ff95d4744b119432b0140a22854a3552b;hpb=ef05f44cce870a8b78637b0a88b27087f7f13b37;p=jquery.git diff --git a/test/unit/core.js b/test/unit/core.js index e67bc52..25ff1f5 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -436,6 +436,18 @@ test("add(String|Element|Array|undefined)", function() { ok( jQuery([]).add( document.getElementById('form') ).length >= 13, "Add a form (adds the elements)" ); }); +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." ); +}); + test("each(Function)", function() { expect(1); var div = jQuery("div");