X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=e86eb3b836523eb902e3cea1d2aeced6c7ba843f;hb=2c08004f6d4e7f11a875190e132d204a25cb9418;hp=d88400d1fd459b9212850d38530f6e886431c8c6;hpb=9584e908a2daa2a72bd738302dba7cfd0656dbdf;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index d88400d..e86eb3b 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -376,7 +376,7 @@ test("append(Function) with incoming value", function() { }); test("appendTo(String|Element|Array<Element>|jQuery)", function() { - expect(14); + expect(16); var defaultText = 'Try them out:' jQuery('buga').appendTo('#first'); @@ -384,6 +384,14 @@ 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"); + 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." ); + + reset(); var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:"; jQuery(document.getElementById('first')).appendTo('#sap'); equals( expected, jQuery('#sap').text(), "Check for appending of element" );