X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=d1fd823b7a720dfc2dd03c38108ac8b91de61652;hb=f68b46d7abb54cdcd3d1ce1713bc989f992d1448;hp=e86eb3b836523eb902e3cea1d2aeced6c7ba843f;hpb=2c08004f6d4e7f11a875190e132d204a25cb9418;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e86eb3b..d1fd823 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -384,12 +384,13 @@ test("appendTo(String|Element|Array<Element>|jQuery)", function() { equals( jQuery('').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element'); reset(); - var l = jQuery("#first").children().length + 3; - jQuery("body").map(function(){ - return jQuery("").get(); - }).appendTo("p"); + var l = jQuery("#first").children().length + 2; + jQuery("test"); + jQuery("test"); + jQuery([ jQuery("test")[0], jQuery("test")[0] ]) + .appendTo("#first"); equals( jQuery("#first").children().length, l, "Make sure the elements were inserted." ); - equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "b", "Verify the last element." ); + equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." ); reset(); var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";