X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcore.js;h=28be6533624ae4dadda328aaa297da0bc1659690;hb=3d8ceaf2f21f4782ff21746887e2bcf56025e704;hp=8aa883aed0c4143bba00426f438c2a1524e787b4;hpb=a38a5cd531a328319f8b7f3f33a84044b54591ce;p=jquery.git diff --git a/test/unit/core.js b/test/unit/core.js index 8aa883a..28be653 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -12,7 +12,7 @@ test("Basic requirements", function() { }); test("jQuery()", function() { - expect(11); + expect(12); // Basic constructor's behavior @@ -21,6 +21,9 @@ test("jQuery()", function() { equals( jQuery(null).length, 0, "jQuery(null) === jQuery([])" ); equals( jQuery("").length, 0, "jQuery('') === jQuery([])" ); + var obj = jQuery("div") + equals( jQuery(obj).selector, "div", "jQuery(jQueryObj) == jQueryObj" ); + // can actually yield more than one, when iframes are included, the window is an array as well equals( 1, jQuery(window).length, "Correct number of elements generated for jQuery(window)" );